使用appsettings,但“ConfigurationSettings”方法已过时

时间:2011-06-17 09:42:23

标签: vb.net appsettings windows-applications

我试图访问我的vb.net 2.0 Web应用程序中的appsettings键值。

我已将密钥放在app.config文件中:

<appSettings>
    <add key="DownloadURL" value="http://<myURL>/" />
</appSettings>

我已按照here的说明操作,并说我需要像这样访问此密钥:

URL = System.Configuration.ConfigurationSettings.AppSettings("DownloadURL")

但我收到以下消息:

  

Public Shared Readonly属性   AppSettings()As   'System.Collections.Specialized.NameValueCollection'   已经过时了:'这种方法已经过时了,   它已被取代   System.configuration!System.configuration.configurationmanager.AppSettings'

我尝试用新方法替换旧方法,但它不存在。

很奇怪,因为我在网络应用程序中做了类似的事情并且确实存在。

1 个答案:

答案 0 :(得分:9)

添加对System.Configuration.dll的引用。

Here's an explanation.