web.config里连接数据库问题
config里:
<appSettings>
<add key="Connectionstring" value="Server=(local);database=RBBBS;uid=sa;pwd =">
</add>
程序里:
SqlConnection monn=new SqlConnection(Session["str_connection"].ToString());monn.Open();
public readonly string ConnStr = ConfigurationManager.AppSettings["connstr"];
[解决办法]
"Persist Security Info=False;Integrated Security=true;Initial Catalog=Northwind;server=(local)"
[解决办法]
为什么连接字符串是写在webconfig.xml中的却写到session中?
而且应该以Connectionstring作为引用名.
[解决办法]
楼主:
[color=#00FF00] <add key= "Connectionstring " value= "Server=(local);database=RBBBS;uid=sa;pwd = "> [/color]
改成
[color=#FF0000] <add key= "Connectionstring " value= "Server=(local);database=RBBBS;uid=sa;pwd =; "> [/color]
[解决办法]
第一步 在服务器名称上 右键选择道具(最下面个)
在出来的界面中选择 安全性(Security)
把SQL Server and windows....选上
第二步 找到sa用户 右键选择道具(最下面)
在出来的界面打开状态(Status) 把login里面的Enabled选上 就可以了
[解决办法]
忘了 最后restart还要一下