我试图访问我的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'
我尝试用新方法替换旧方法,但它不存在。
很奇怪,因为我在网络应用程序中做了类似的事情并且确实存在。