日期:2014-05-18 浏览次数:20414 次
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还要一下