I have this problem:
What to write in webconfig file when use Web Authentication in Asp.net?
As what do I know if use Web Authentication in Asp.net dont have to put user id and password. So this is the original coding in webconfig file:
add name="HibahTotalConnectionString" connectionString="Data Source=HTP7526\SQLEXPRESS_2;Initial Catalog=HIBAHV4;Persist Security Info=True; User ID=sa;Password=uts" providerName="System.Data.SqlClient"/>
And, I had replace the User ID=sa;Password=uts
part with this Integrated Security=SSPI
but it doesnt work. When I run my webpage it says cannot connect to database
.