<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: HtmlEncode in ASP.NET</title>
	<atom:link href="http://bdwebster.com/2008/03/05/htmlencode-in-aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://bdwebster.com/2008/03/05/htmlencode-in-aspnet/</link>
	<description>Web Development and Other Ramblings</description>
	<lastBuildDate>Sun, 27 Mar 2011 02:53:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: R. Schreurs</title>
		<link>http://bdwebster.com/2008/03/05/htmlencode-in-aspnet/#comment-667</link>
		<dc:creator><![CDATA[R. Schreurs]]></dc:creator>
		<pubDate>Mon, 26 Apr 2010 11:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://bwebster.wordpress.com/?p=72#comment-667</guid>
		<description><![CDATA[&gt;&gt; Hopefully now I’ll remember to look at my blog rather than Google:-)

Even better: Google lists this blog on top. Now there is nothing I need to remember :-)

Thanks for blogging this.]]></description>
		<content:encoded><![CDATA[<p>&gt;&gt; Hopefully now I’ll remember to look at my blog rather than Google:-)</p>
<p>Even better: Google lists this blog on top. Now there is nothing I need to remember <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Thanks for blogging this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Webster</title>
		<link>http://bdwebster.com/2008/03/05/htmlencode-in-aspnet/#comment-503</link>
		<dc:creator><![CDATA[Brian Webster]]></dc:creator>
		<pubDate>Wed, 10 Sep 2008 04:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://bwebster.wordpress.com/?p=72#comment-503</guid>
		<description><![CDATA[Andrew - Thanks for the comment, and the code sample. Looks very useful!]]></description>
		<content:encoded><![CDATA[<p>Andrew &#8211; Thanks for the comment, and the code sample. Looks very useful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Webb</title>
		<link>http://bdwebster.com/2008/03/05/htmlencode-in-aspnet/#comment-502</link>
		<dc:creator><![CDATA[Andrew Webb]]></dc:creator>
		<pubDate>Tue, 09 Sep 2008 14:57:04 +0000</pubDate>
		<guid isPermaLink="false">http://bwebster.wordpress.com/?p=72#comment-502</guid>
		<description><![CDATA[With C# 3.0 extension methods you can have the HtmlEncode method as part of the String class...

// Extension methods for the &#039;String&#039; class.
public static class StringExtensions
{
  // Returns the HTML-encoded version of the specified string.
  public static String HtmlEncode (this String s)
  {
    if (String.IsNullOrEmpty (s))
      return (s);
    else
      return (HttpUtility.HtmlEncode (s));
  }
}]]></description>
		<content:encoded><![CDATA[<p>With C# 3.0 extension methods you can have the HtmlEncode method as part of the String class&#8230;</p>
<p>// Extension methods for the &#8216;String&#8217; class.<br />
public static class StringExtensions<br />
{<br />
  // Returns the HTML-encoded version of the specified string.<br />
  public static String HtmlEncode (this String s)<br />
  {<br />
    if (String.IsNullOrEmpty (s))<br />
      return (s);<br />
    else<br />
      return (HttpUtility.HtmlEncode (s));<br />
  }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fordareh</title>
		<link>http://bdwebster.com/2008/03/05/htmlencode-in-aspnet/#comment-471</link>
		<dc:creator><![CDATA[fordareh]]></dc:creator>
		<pubDate>Thu, 29 May 2008 03:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://bwebster.wordpress.com/?p=72#comment-471</guid>
		<description><![CDATA[I was working on a command line C# executable and couldn&#039;t find out for the life of me how to get some sort of an HttpServerUtility object.  I didn&#039;t realize that HttpUtility existed.

Thanks!]]></description>
		<content:encoded><![CDATA[<p>I was working on a command line C# executable and couldn&#8217;t find out for the life of me how to get some sort of an HttpServerUtility object.  I didn&#8217;t realize that HttpUtility existed.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

