隐藏和取消隐藏asp.net中的标签c#

时间:2014-03-20 09:13:48

标签: c# javascript asp.net

我想在我的asp.net项目中隐藏和取消隐藏标签,我使用的是C#和JavaScript。

我的标签名称:

Label2

我试着这样:

if (useraddress == "123")
     {
         Label2ShowText.Visible = true;
     }
     else
     {
         Label2ShowText.Visible = false;
     }

但这不起作用。

3 个答案:

答案 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;