3

如何在 ASP.net 控件中设置属性的值?假设我的控制是:

<asp:Label runat="Server" ID="Label1" Text="Value"></asp:Label>

我想Value从 web.config 中获取:

 System.Configuration.ConfigurationManeger.AppSetting["ValueKey"]

我必须做什么?

请原谅我的英语很差。

4

3 回答 3

1

试试这个 -

<asp:Label ID="Label1" runat="server" Text='<%$ AppSettings:SettingKey%>'></asp:Label>

其中 SettingKey 是您的应用设置的密钥名称。

于 2013-02-08T12:28:49.563 回答
0

尝试 -

C#:Label1.Text = System.Configuration.ConfigurationManager.AppSettings["ValueKey"].ToString()

VB:Label1.Text = System.Configuration.ConfigurationManager.AppSettings("ValueKey").ToString()

于 2013-02-08T11:10:12.840 回答
0

像这样将代码添加到页面加载:-

 protected void Page_Load(object sender, EventArgs e)
   {

Label1.Text = System.Configuration.ConfigurationManager.AppSettings["ValueKey"].ToString();

}
于 2013-02-08T11:18:02.340 回答