views:

35

answers:

1

I have a custom attribute that I use in various elements in my ASP.NET HTML markup. Obviously it violates the DTD, and I get a validation error from Visual Studio. I hate ignoring errors in the error output window. Is there a way to suppress this error message? For example:

<label id="MyId" cid="MyCID" runat="server" />

cid is a custom attribute I use for various purposes, and it produces a validation error:

Validation (XHTML 1.0 Transitional): Attribute 'cid' is not a valid attribute of element label

Thanks.

+1  A: 

Goto Tools > Options > Text Editor > Html > Validation and turn it off. Simples.

Jaimal Chohan
I don't want to turn off validation, it is useful. I just want to indicate that this custom attribute is acceptable.
JessicaB