首页 > 代码库 > ASP.NET Web.Config连接数据库(测试)

ASP.NET Web.Config连接数据库(测试)

事先说明,我是看着http://jingyan.baidu.com/article/ff411625bc461712e5823775.html做的。

 

web.Config代码(vs2010):

技术分享

使用的是SQL server,Window身份验证,如果是Sql验证就在database=xxx后加上;uid=xxx;pwd=xxx

server=xxx填写用户Name。

另外要引用System.Configuration.dll

.cs类,需要

using System.Configuration;

using System.Data.SqlClient;

技术分享

页面:

技术分享

结果:

技术分享

 

ASP.NET Web.Config连接数据库(测试)