我正在尝试更改运行时 site.master 页面上存在的 css 类属性,但到目前为止我已经厌倦了
mainContainer.Attributes.Add("style", "background-image('myImage.png')");
和
mainContainer.Attributes.Add("class", "className");
但是这些都不能让我在运行时更改主文件的 css。我正在使用 c# 使用 asp.net
这是母版页上的代码
<div class="main">
<asp:ContentPlaceHolder ID="MainContent" runat="server"/>
</div>