宣布按钮颜色,背景的更好方法是什么?

时间:2014-01-29 16:44:55

标签: c# asp.net xhtml

Visual Studio似乎对C#aspx.net中自动生成的代码有问题

  

“消息2验证(XHTML 1.0 Transitional):属性'bgcolor'被认为是过时的。建议使用更新的构造.C:\ Users \ Anton54 \ Documents \ Visual Studio 2008 \ WebSites \ WebSite1 \ Games.aspx 9 7 C :... \的WebSite1 \“

这是网站的背景,是自动生成的。

有没有更好的方法来编码?

1 个答案:

答案 0 :(得分:3)

如果您将渲染模式检查为Legacy(不建议使用XHTML Rendering Mode

,它可能会正常工作
<system.web>
<!-- other elements here -->
    <xhtmlConformance 
        mode="Legacy" />
</system.web>

现在它明确表示正在检查Transitional,这通常发生在我们从ASP.Net 1.1 to higher version

转换应用程序时

检查HTML attribute bgcolor is deprecated: What To Use Instead?

Also List of deprecated elements still widely in use

使用有效的CSS background属性

background: namedColor | hexadecimalcolorcode;

background-color:namedColor | hexadecimalcolorcode;