"在VisualStudio中的数据库连接配置不停的升级,而且每次升级后,使用方式均发生了变化,不知道微软什么时候,能够把这个固定下来。看来为了安全,只有不停的升级。下面是最新的配置和使用方式:
vs.net 2005中的ConfigurationManager,代替了原来的configurationsettings。用法大概如下,详细的看MSDN
读取配置:
ConfigurationManager.AppSettings[\"MyKey\"]
读取数据库的配置(这个估计大家最经常用了)
在web.config中
<connectionStrings>
<add name="AppConnectionString1" connectionString="server=localhost;database=northwind;uid=sa;password=xxxx;" />
</connectionStrings>
在程序中如下读取:
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["AppConnectionString1"].ConnectionString);
GETSECTION方法:
ConfigurationManager.GetSection("mySection")