I want to prevent users from entering url\'s (like a href=\"\") in a TextBox.
I want to use a regular expression validator but no idea what to write?
How ca
You can use the keypress JS event and check to see if the pattern entered matches what you want to filter, You can also use the onblur event to do the samething