Home
Manage Your Code
Snippet: check for html tags regular expression (C#)
Title: check for html tags regular expression Language: C#
Description: checks a string for any text that looks to be an html tags. Views: 167
Author: Steve Vasquez Date Added: 7/30/2008
Copy Code  
1</?(\w+)(?:[^">]|\"[^"]*")*>
Usage
Great for checking text box content being submitted that you don't want html tags being used.