主题:我的配置文件哪里出问题了?
vb.net winform环境
向项目 教务管理系统 中添加一配置文件
该配置文件名为:教务管理系统.exe.config
(2005-03-11 16:47:47) hmchao
程序配置文件为
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appsettings>
<add key="constring"
value="Initial Catalog=教务管理系统;data Source=localhost;IntegratVd Security=SSPI"/>
</appsettings>
</configuration>
我在程序中读取这个字符串怎么是空字符。
读取方式为:
MessageBox.Show(ConfigurationSettings.AppSettings("constring"))
向项目 教务管理系统 中添加一配置文件
该配置文件名为:教务管理系统.exe.config
(2005-03-11 16:47:47) hmchao
程序配置文件为
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appsettings>
<add key="constring"
value="Initial Catalog=教务管理系统;data Source=localhost;IntegratVd Security=SSPI"/>
</appsettings>
</configuration>
我在程序中读取这个字符串怎么是空字符。
读取方式为:
MessageBox.Show(ConfigurationSettings.AppSettings("constring"))