tbone
tbone

Reputation: 5865

Vb6 “Tag” property equivalent in ASP.Net, BUT...available at design time within the aspx file?

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

Answers (1)

John Saunders
John Saunders

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

Related Questions