| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 908 人关注过本帖
标题:ConnectionString 属性尚未初始化。
只看楼主 加入收藏
wushanshan1
Rank: 1
等 级:新手上路
帖 子:34
专家分:0
注 册:2013-4-8
结帖率:100%
收藏
 问题点数:0 回复次数:2 
ConnectionString 属性尚未初始化。
程序代码:
 protected void Button1_Click1(object sender, EventArgs e)
    {
       
        string str = "insert into zxly (name,comname,phone,email,add,title,content) values ('" + name.Text + "','" + comname.Text + "','" + phone.Text + "','" + email.Text + "','" + add.Text + "','" + title.Text + "','" + content.Text + "')";
        OleDbConnection cn = new OleDbConnection(System.Configuration.ConfigurationManager.AppSettings["SQLConnString"].ToString());
        cn.Open();
        OleDbCommand com = new OleDbCommand(str, cn);
        cn.Close();
       
    }

这是什么原因啊,有没有人知道的,求大神解答。
搜索更多相关主题的帖子: color 
2013-04-16 09:46
yms123
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
收藏
得分:0 
程序代码:
protected void Button1_Click1(object sender, EventArgs e)
    {
      
        string str = "insert into zxly (name,comname,phone,email,add,title,content) values ('" + name.Text + "','" + comname.Text + "','" + phone.Text + "','" + email.Text + "','" + add.Text + "','" + title.Text + "','" + content.Text + "')";
        OleDbConnection cn = new OleDbConnection(System.Configuration.ConfigurationManager.AppSettings["SQLConnString"].ToString());
        cn.ConnectionString=System.Configuration.ConfigurationManager.AppSettings["SQLConnString"].ToString();
        cn.Open();
        OleDbCommand com = new OleDbCommand(str, cn);
        cn.Close();
      
    }
2013-04-20 10:32
Aviva_Wang
Rank: 11Rank: 11Rank: 11Rank: 11
来 自:苏州
等 级:贵宾
威 望:26
帖 子:701
专家分:2382
注 册:2013-3-12
收藏
得分:0 
System.Configuration.ConfigurationManager.AppSettings["SQLConnString"].ToString()
你确定你在配置文件中有配置吗?

asp
2013-04-20 20:45
快速回复:ConnectionString 属性尚未初始化。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017883 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved