连接上数据库有几种方式: 你的应该是ADO.net 链接的 在web.congfig配置文件配置。有个连接字符串的。server=. database=sjk;uid=sa;pwd=; 祝你好运!
ADO.NET
1.connection用法
2.command用法
3.adapter用法
基本把这几个用法说一下,就没事了
string SqlString = "server=localhost\\sqlexpress;DataBase=留言本;Integrated Security=True;";
SqlConnection c=new SqlConnection (SqlString);
c.Open()