您如何以编程方式将CSS类应用于字符串变量

您如何以编程方式将CSS类应用于字符串变量

本文介绍了您如何以编程方式将CSS类应用于字符串变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何以编程方式将CSS类应用于字符串变量?
例如,
string something ="

"//它可以正常工作
string something ="
"//它不适用于应用CSS类名...
为什么?..........

How do you programmatically apply a css class to an string variables?
for example,
string something="

" //it can be working
string something="
" //it cannot working for applying css class name...
why?..........

推荐答案

<asp:panel id="Panel1" runat="server" xmlns:asp="#unknown">
Hello World
</asp:panel>


Panel1.CssClass = "PanelStyle";




or

Panel1.Attributes.Add("class", "PanelStyle");




这篇关于您如何以编程方式将CSS类应用于字符串变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 22:05