有没有办法使用以下构造动态设置css类名:
<asp:Panel ID="pDisplayMode" class="dynaClass<%= this.codeBehindVar )%>" runat="server">
我试过这个也无济于事:
<asp:Panel ID="pDisplayMode" CssClass="dynaClass<%= this.codeBehindVar )%>" runat="server">
我意识到我可以在后面的代码中操作CssClass,但是,如果可能的话,我想将它保留在标记中。