C
Calvin X
How do i get my public properties on a webcontrol to show up on the designer so I can set them on the page they are residing without having to set them via code?
I have tried the following:
using System.ComponentModel;
......
[Category("Appearance"), DefaultValue("nothing important")
public string BLAH
{ get{} set{} }
but they just dont show up, am i missing something?
Thanks
Calvin X
I have tried the following:
using System.ComponentModel;
......
[Category("Appearance"), DefaultValue("nothing important")
public string BLAH
{ get{} set{} }
but they just dont show up, am i missing something?
Thanks
Calvin X