无法读取我的 ASP.NET web.config 文件中的值
我想从 web.config
文件中的
部分检索值。该密钥名为 imgServer
。
我尝试了这个,但它不起作用:
Label1.Text = System.Configuration.ConfigurationSettings.AppSettings.Get("imglServer");
然后我尝试了:
Label1.Text = ConfigurationSettings.AppSettings["imgServer"];
但这也不起作用。
我做错了什么?
I want to retrieve a value from my <appSettings>
section in my web.config
file. The key is named imgServer
.
I tried this but it doesn't work:
Label1.Text = System.Configuration.ConfigurationSettings.AppSettings.Get("imglServer");
I then tried:
Label1.Text = ConfigurationSettings.AppSettings["imgServer"];
But this doesn't work either.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下。
Try that.
您不指定您使用的 ASP.NET 版本或语言:
在 C# 中,情况是:
您可能还需要在
using 中添加
s 部分。using System.Configuration;
类文件或代码隐藏的在 VB.NET 中,情况是:
如果尚不存在,您可能还需要添加对 System.Configuration 的引用。
You don't specify what version of ASP.NET you're using or which language:
In C# it would be:
You might also have to add a
using System.Configuration;
in theusing
s section of your class file or code-behind.In VB.NET it'd be:
You might also have to add a reference to
System.Configuration
if it's not already there.