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 \“
这是网站的背景,是自动生成的。
有没有更好的方法来编码?
答案 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;