当前位置: 代码迷 >> ASP.NET >> .aspx页面中使用了控件的隐藏属性 style="DISPLAY: none"如何在后台程序.cs中隐藏和显示此控件。
  详细解决方案

.aspx页面中使用了控件的隐藏属性 style="DISPLAY: none"如何在后台程序.cs中隐藏和显示此控件。

热度:3966   发布时间:2013-02-25 00:00:00.0
.aspx页面中使用了控件的隐藏属性 style="DISPLAY: none",怎么在后台程序.cs中隐藏和显示此控件。。
.aspx页面中有两个Panel和一个linkbutton. 两个Panel是通过style="DISPLAY: none"隐藏的。。
现在点击linkbutton要显示两个Panel。。怎么在.cs后台的隐藏和显示这两个Panel啊。

------解决方案--------------------------------------------------------
Panel1.Style["display"] = "";
Panel2.Style["display"] = "none";
------解决方案--------------------------------------------------------
protected void myLinkButton_Click(object sender, EventArgs e)
{
Panel1.Attributes.CssStyle.Remove("display");
Panel2.Attributes.CssStyle.Remove("display");
}
------解决方案--------------------------------------------------------
style="display:block"?
------解决方案--------------------------------------------------------
Panel1.Style.Add("display", "none");
------解决方案--------------------------------------------------------
新版好恼火,回了半个小时才回上,急死人
Panel1.Style["display"] = "block";
这样也行
  相关解决方案