我打算自己做一个网站,于是参考别人的源码来写,他的web.config 关键代码如下 <connectionStrings>
<add name="JIMConn" connectionString="Data Source=PC-201510070659;Initial Catalog=EimBase;Persist Security Info=True;User ID=sa;pwd=luo19011" providerName="System.Data.SqlClient"/>
</connectionStrings>
我参照他写如下代码
<configuration>
<add name="DGZK1022Conn" connectionString="Data Source=PC-201510070659;Initial Catalog=dgzk1022;Persist Security Info=True;User ID=sa;pwd=luo19011" providerName="System.Data.SqlClient"/>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
</configuration>
其中一段代码自动生成 <system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
我要做的是点击图片上的图片若无法显示请打开此链接http://pan.baidu.com/s/1hq6RNFm 确定按钮 把textbox上的信息增加到 数据库 dgzk1022 中的表中 谢谢大神抽空看我的提问, 错误信息 无法读取配置节“add”,因为它缺少节声明 我不知道如何申明它。
<configuration>
<connectionStrings>
<add name="DGZK1022Conn" connectionString="Data Source=PC-201510070659;Initial Catalog=dgzk1022;Persist Security Info=True;User ID=sa;pwd=luo19011" providerName="System.Data.SqlClient"/>
</connectionStrings>
</configuration>
这样用connectionStrings套起来
你好,你的回答完满解决了我的问题,不报错了,运行成功,如下图的链接 http://pan.baidu.com/s/1mgm0Uy0
你确定WEB每一个属性是干嘛的,然后在仿照这改。
说错了 连接字符串每个属性。
抱歉,耽误您时间了,<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>这代码是系统自动生成的,我也不知道啥意思,您没有解决我的问题因此很抱歉。