0

我正在使用一个面板,这个面板里面有一个 div 。我需要为这个 div 设置 height 和 width 以及 css 样式。但我无法在 c# 代码中找到这个 div id。如何在 c# 中获取此 div id,并将样式添加到此 div 。任何答案将不胜感激

4

3 回答 3

1

Add runat="server" attribute into div along with its ID.

You can set CssClass in that div ID in following way"

DivID.CssClass = "className";
于 2012-06-18T10:55:42.843 回答
0

如果您的 div 确实有,runat="server"那么您可以获得对面板的引用,然后使用:

 var div = panel.FindControl("divId");
于 2012-06-18T10:53:49.723 回答
0

制作它DIV runat="server"并提供ID给它,然后使用它。

Div1.Style.Add("color","red"); // or any other style attribute in place of color
于 2012-06-18T10:50:56.887 回答