如何在ASP.net控件中设置属性的值?假设我的控制权是:
<asp:Label runat="Server" ID="Label1" Text="Value"></asp:Label>
我想从web.config获取Value
:
System.Configuration.ConfigurationManeger.AppSetting["ValueKey"]
我必须做什么?
请原谅我英语不好和不好。
答案 0 :(得分:1)
试试这个 -
<asp:Label ID="Label1" runat="server" Text='<%$ AppSettings:SettingKey%>'></asp:Label>
其中SettingKey是您的appsetting的键名。
答案 1 :(得分:0)
尝试 -
C#: Label1.Text = System.Configuration.ConfigurationManager.AppSettings [“ValueKey”]。ToString()
VB: Label1.Text = System.Configuration.ConfigurationManager.AppSettings(“ValueKey”)。ToString()
答案 2 :(得分:0)
将代码添加到页面加载如下: -
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = System.Configuration.ConfigurationManager.AppSettings["ValueKey"].ToString();
}