ado.net read connection string from web.config code example
Example 1: get connectionstring from web config c#
// Add a using directive at the top of your code file
using System.Configuration;
// Within the code body set your variable
string cs = ConfigurationManager.ConnectionStrings["connectionStringName"].ConnectionString;
Example 2: get connection string from web.config in c#
get connection string