在Response.write中添加CSS类

时间:2019-06-12 14:13:09

标签: c# css asp.net class

如何在response.write中添加CSS类?

Response.Write("<p class="style1">Your complaint has been submitted.<p>");



.style1 {color : #ff0000;}  

 Response.Write("<p>Your complaint has been submitted.<p>");

2 个答案:

答案 0 :(得分:0)

我认为做到这一点的最佳方法是不使用CSS,有多种显示此信息的方法,例如在div中显示文本,对于这两者都不需要response.write,只需在div中使用标准文本。您还可以使用标记,然后执行以下操作(如果您想了解更多信息,请在这里Using CSS to insert text中查看): 这需要具有CSS2功能的浏览器(所有主要浏览器,IE8 +):

<style type="text/css">
    .style1 {color : #ff0000;}
    .style1:before {content: "<% response.write "Your complaint has been submitted."%>";}
</style>

答案 1 :(得分:0)

如果我只需要公共属性,那么我将使用下一个代码:

Page.Controls.Add(new Label { Text = "asasdfasdfdf", ForeColor = System.Drawing.Color.Blue });