| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 465 人关注过本帖
标题:appconfig连接问题?
只看楼主 加入收藏
yeyuanzhi
Rank: 1
等 级:禁止访问
帖 子:88
专家分:0
注 册:2005-12-31
结帖率:100%
收藏
 问题点数:0 回复次数:0 
appconfig连接问题?

我的appconfig这么些的:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>

<appSettings>

<add key="DBHost" value="JF023\\SQLEXPRESS" />
<add key="DBName" value="wage" />
<add key="DBUser" value="sa" />
<add key="DBPass" value="jfis" />
</appSettings>
<connectionStrings>

</connectionStrings>


</configuration>
在程序中调用:
public string Constr()
{
string dbhost = System.Configuration.ConfigurationManager.AppSettings["DBHost"];
string dbname = System.Configuration.ConfigurationManager.AppSettings["DBName"];
string dbuser = System.Configuration.ConfigurationManager.AppSettings["DBUser"];
string dbpass = System.Configuration.ConfigurationManager.AppSettings["DBPass"];
string connStr= "server="+dbhost+";database="+ dbname+";uid="+dbuser+";pwd="+dbpass+"";
return connStr;
}

为什么不行啊!

搜索更多相关主题的帖子: appconfig 
2007-06-20 11:06
快速回复:appconfig连接问题?
数据加载中...
 
   



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

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