Monday, July 16, 2007 - Posts

Hiding a custom webcontrol's property from the Properties window

A quick note, if you have property in a custom webcontrol that you don't want to show up in the Properties window, decorate it with the Browsable() attribute. Ex. [Browsable(false)]public string Name         {             get             {   Read More