我有一个自定义属性,我在ASP.NET HTML标记中的各种元素中使用。显然它违反了DTD,我从Visual Studio得到了验证错误。我讨厌忽略错误输出窗口中的错误。有没有办法抑制此错误消息?例如:
<label id="MyId" cid="MyCID" runat="server" />
cid是我用于各种目的的自定义属性,它会产生验证错误:
Validation (XHTML 1.0 Transitional): Attribute 'cid' is not a valid attribute of element label
答案 0 :(得分:3)
转到工具&gt;选项&gt;文本编辑器&gt; Html&gt;验证并关闭它。 Simples。
答案 1 :(得分:0)
自HTML5标准以来,您可以使用前缀data-
定义自定义属性。
在您的情况下,它将是data-cid="MyCID"
。这将删除警告。