need an asp.net regular expression to to do the following:
there is a text box. there is also an Regular Expression Validator which is validation text box.
Now i need a regular expression for that Regular Expression Validator such than if any one enters either < > ; in the the text box in any order or form, whether followed by characters or had characters before it, it should cause the validation to return false;
all help will be appriciated.
currently i am using [^<>;]*
but this fails because validation results true when some one enters <html
help....
there is a text box. there is also an Regular Expression Validator which is validation text box.
Now i need a regular expression for that Regular Expression Validator such than if any one enters either < > ; in the the text box in any order or form, whether followed by characters or had characters before it, it should cause the validation to return false;
all help will be appriciated.
currently i am using [^<>;]*
but this fails because validation results true when some one enters <html
help....