
Hello Friends,
Today I am writing this post because of I found out that beginners got a problem to create connection with database in web config file in asp.net. So, Solution is here. Enjoy it.....
Web Config File
<configuration>
<connectionStrings>
<add name="nameofConnection" connectionString="Data Source=servername; Initial Catalog=DatabaseName; User
ID=UserName; Password=Password;"/>
</connectionStrings>
<system.web>
<compilation debug="false" targetFramework="4.0"...