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

我的标签名称:

Label2


我这样尝试:

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


但这是行不通的。

最佳答案

如果名称为Label2,则您的代码应为

if (useraddress == "123")
    Label2.Visible = true;
else
    Label2.Visible = false;

10-08 10:53