How do I store and retrieve connection strings from my web.config file in ASP.Net?
How to store and retrieve connection string f开发者_高级运维rom web.config file in ASP.Net ?
using System.Configuration;
ConnStr = ConfigurationManager.ConnectionStrings["some Key"].ToString();
精彩评论