Reputation: 5865
I have an extension to this question:
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??
Upvotes: 0
Views: 350
Reputation: 161773
There is no such thing. Sorry. Extension controls don't (or at least, didn't used to) work in the WebForms designer.
Upvotes: 1