what is regular expression validator for the textbox which doesnot contains character like "< >" as a string input
A:
<[^<]+?>
This Regex will match "< >" pair. Add logic to your code to handle situation when this match is found
J Angwenyi
2010-05-18 12:08:00
Not what's been asked.
Tomalak
2010-05-18 12:18:43