我有一个名为 Refer.config 的配置文件,其中包含 appSettings 为:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="Database" value="CouchDB"/>
</appSettings>
</configuration>
现在在 web.config 中,我将其引用为:
<appSettings file="C:\Users\312171\Documents\Visual Studio 2008\WebSites\WebSite4\Refer.config">
</appSettings>
现在在 cs 文件中,我试图访问 appSettings 的键值,如下所示:
protected void Button2_Click(object sender, EventArgs e)
{
string filetype = ConfigurationManager.AppSettings["Database"];
testvalue.Text = string.Format("The key value is:",filetype);
}
但它没有返回键值......我犯了什么错误?请帮帮我。。