如何用c#更改css对象的可见性和大小
本文关键字:可见性 对象 何用 更改 css | 更新日期: 2023-09-27 17:59:14
我有一个id为_box1的div
我的点击事件访问下面的c#例程:
private void Expand_Ratings(object src, EventArgs e)
{
_box1.Style["background-color"] = "Red";
}
当我运行编译器时,我得到:
Compiler Error Message: CS0103: The name '_box1' does not exist in the current context
有人能帮助吗
您需要将runat="server"
属性添加到HTML代码中的标记中,以便从服务器端代码访问。
试试这个:
<DIV ID="_box1" runat="server">
</DIV>
您应该将runat="server"
添加到您的div中。
然后你应该这样做:
_box1.Attrbutes["style"] = "background-color:red";
在div中的runat服务器上是。
<div ID="_box1" runat="server">
</div>
在后面的代码中。。
_box1.Width = 300;
_box1.Height = 300;
_box1.Visible = false;
or by CSS
_box1.Style["Height"] = "300px";
_box1.Style["Visible"] = "false";
良好的luke