vote up -2 vote down star

There have been a fair amount of questions on this site about parsing HTML from textareas and whatnot, or not allowing HTML in Textboxes. My question is similar: How would I detect if HTML is present in the textbox? Would I need to run it through a regular expression of all known HTML tags? Is there a current library for .NET that has the ability to detect when HTML is inserted into a Textarea?

Edit: Similarly, is there a JavaScript Library that does this?

Edit #2: Due to the way that the web app works (It validates textarea text on asyncronous postback using the Validate method of ASP.NET), it bombs before it can get back to the code-behind to use HTML.Encode. My concern was trying to find another way of handling HTML in those instances.

flag

Added new information. – George Stocker Dec 8 '08 at 19:57
Wow, downvoted again. Intriguing. Must have been a bad question. – George Stocker Feb 5 at 21:19

5 Answers

vote up 1 vote down check

As far as I know you cannot paste HTML into a TextArea and have it work automatically at least in .Net 2.0. ASP.Net automatically santizes input. You need to set ValidateInput page directive to false (If I remember correctly).

If you want to allow HTML tags and want to pick from a possible list of tags, I suggest you lookup 'Markdown' and this Jeff Atwood Post.

link|flag
vote up 1 vote down
bool containsHtml = Regex.IsMatch(MyTextbox.Text, @"<(.|\n)*?>");
link|flag
vote up 3 vote down

Not really an answer, but why you need it at all? You need to sanitize HTML input only if you are going to output it without modifications, i.e. if you want to allow your users actually to be able to use HTML. And if you want that, you do not have to "detect" HTML, you just need to make sure that you handle it safe. Jeff Atwood has a good routine for this.

If you want to prevent at all HTML output, you can take whatever the user inputs, without any checks. Just take care to HtmlEncode it, and store it that way. Then your output will not have actually any "real" HTML from what the user wrote.

link|flag
vote up 0 vote down

Well, in HTML you can't do a lot without a less than symbol "<".

So, I would look for a less than symbol followed by come characters followed by a greater than symbol. If you find that, you can pretty much be assured that it is HTML.

I don't think you have to look for specific tags, as HTML will ignore invalid tags as part of the specification and it would still be considered HTML.

EDIT: Oops! Almost forgot... the ampersand character! If you see one in the text, you MIGHT have HTML since it is used to specify special characters (like &copy; for ©) This can be dangerous because the user could specify &lt; for < so it might turn into HTML later...

link|flag
vote up 2 vote down

Yes, a regular expression is probably the easiest way to do that.

One regex would be: <([A-Z][A-Z0-9]*)\b[^>]*>(.*?)</\1>

You can run that in both ASP.Net and javascript. The .Net framework class you use is System.Text.RegularExpressions.Regex

Hope that helps!

link|flag
Well, all that does (if I'm reading it correctly), is looking for an opening tag, any amount of text, and then a closing tag. The problem there is if it's greedy, it would see <a sometexthere and some other text here. Or >. It would detect that as HTML, am I correct? – George Stocker Nov 17 '08 at 20:45
You are correct, but the expression to evaluate only valid html tags is really silly long. I found it works in most cases. – Zachary Yates Nov 18 '08 at 15:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.