更改使用MasterPage的WebContentForm的css类名称的最简单方法是什么?
示例:
<body>...</body>
<body class="myClass">...</body>
<body>...</body>
答案 0 :(得分:2)
我使用此解决方法:
在MasterPage上:<body id="body" runat="server">
在Index.cs上:((HtmlGenericControl)Page.Master.FindControl("body")).Attributes["class"] = "myClass";
这不是很优雅,但它的工作