I have an extension to this question:
http://stackoverflow.com/questions/183093/vb6-tag-property-equivalent-in-asp-net
The solution to that is excellent, but I want to be able to set the Tag property at design time within the aspx file, ie:
<asp:TextBox id="myTextBox" Tag="thisIsMyTag" .....
Note: I do not want to inherit and extend each control I want to have this property available on.
Possible??