我想在我的asp.net项目中隐藏和取消隐藏标签,我使用的是C#和JavaScript。
我的标签名称:
Label2
我试着这样:
if (useraddress == "123")
{
Label2ShowText.Visible = true;
}
else
{
Label2ShowText.Visible = false;
}
但这不起作用。
答案 0 :(得分:2)
如果名称是 Label2 ,则您的代码应为
if (useraddress == "123")
Label2.Visible = true;
else
Label2.Visible = false;
答案 1 :(得分:0)
您所说的标签名称为Label2
,而您指的是Label2ShowText
,请查看:
Label2ShowText.Visible = true;
将其更改为:
if (useraddress == "123")
{
Label2.Visible = true;
}
else
{
Label2.Visible = false;
}
答案 2 :(得分:0)
您将标签称为Label2
..但您使用了Label2ShowText
代替......
Label2.Visible = true;