Hi friends,
I want to validate a textbox with regular expression so you only can enter numeric characters, but now I want that the error validation appear if the textbox be empty. here is the code
Types.Add("NUMBER", new Validation(@"[\d]{1,255}","Only numbers can be entered in this field."));
...
Go to the complete details ...