无法读取我的 ASP.NET web.config 文件中的值

发布于 2024-11-02 09:15:51 字数 391 浏览 0 评论 0原文

我想从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦里兽 2024-11-09 09:15:51
System.Configuration.ConfigurationManager.Appsettings.Get("imglServer");

尝试一下。

System.Configuration.ConfigurationManager.Appsettings.Get("imglServer");

Try that.

江挽川 2024-11-09 09:15:51

您不指定您使用的 ASP.NET 版本或语言:

在 C# 中,情况是:

Label1.Text = ConfigurationManager.AppSettings["imgServer"];

您可能还需要在 using 中添加 using System.Configuration;类文件或代码隐藏的s 部分。

在 VB.NET 中,情况是:

Label1.Text = ConfigurationManager.AppSettings("imgServer")
' Note the round brackets instead of the square brackets as used by C# ^^^

如果尚不存在,您可能还需要添加对 System.Configuration 的引用。

You don't specify what version of ASP.NET you're using or which language:

In C# it would be:

Label1.Text = ConfigurationManager.AppSettings["imgServer"];

You might also have to add a using System.Configuration; in the usings section of your class file or code-behind.

In VB.NET it'd be:

Label1.Text = ConfigurationManager.AppSettings("imgServer")
' Note the round brackets instead of the square brackets as used by C# ^^^

You might also have to add a reference to System.Configuration if it's not already there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文