Yahoo! Cache Mishandling Superscript HTML Tag (Search Engine Roundtable)

Yahoo! Cache Mishandling Superscript HTML Tag (Search Engine Roundtable)
A WebmasterWorld thread reports that Yahoo!’s cache is mishandling the (superscript) HTML tag. The superscript tag basically looks like this, often used for adding comments1 numbers for reference or other characters to words. Yahoo! Moderator, jdMorgan, confirmed this…

Utility of the Day: PDF to HTML Converter

Utility of the Day: PDF to HTML Converter
When you don’t want or don’t need to publish a PDF on the Web, convert it to HTML and browse away.

ASP.NET: Remove HTML Tags From a String

ASP.NET: Remove HTML Tags From a String
A lot of websites allow users to input text and submit it to the site.This could be forums, blogs, content management systems etc. Imaging if the user writes HTML into these form fields? It could be perfectly harmless when used for styling, but it could also be used the wrong way. A typical scenario would be when a user enters JavaScript that does harmful things or embedding a style sheet that ruins the websites layout. This is normally referred to as Cross-Site Scripting (XSS). We have to mitigate that risk, and thats when regular expression comes to the rescue. Here is