I'm using the asp mvc 3. When I build my views using the default html-helpers there is a problem with html-encoding in tag-attributes: The "greater-than"-sign isn't encoded.
So this code
<%: Html.TextBox("TestText", "<Test>") %>
produces this output
<input id="TestText" name="TestText" type="text" value="<Test>" />
Is there any reason why the value-attribute isn't full encoded or is this a bug? Or is there any way how to use a full encoding even in tag-attributes?
Thanx, Michael