Hi all
I am currently in the process of creating a server control for inclusion on a form. One of the attributes should be required. Is there any way to force this when I set up the attributes? My code for the attribute currently looks like:
Thanks as always
Craftor

I am currently in the process of creating a server control for inclusion on a form. One of the attributes should be required. Is there any way to force this when I set up the attributes? My code for the attribute currently looks like:
Code:
[Category("Custom")]
public string ModuleID
{
get{return _moduleID;}
set{_moduleID= value;}
}
Thanks as always
Craftor