<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FruitBatInShades Code &#187; Asp.Net</title>
	<atom:link href="http://www.fruitbatscode.com/category/net/aspnet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fruitbatscode.com</link>
	<description>Where the fruitbat keeps his notes</description>
	<lastBuildDate>Thu, 17 Nov 2011 12:20:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>UAD 9 &#8211; Numbers To Words</title>
		<link>http://www.fruitbatscode.com/net/c/uad-9-numbers-to-words</link>
		<comments>http://www.fruitbatscode.com/net/c/uad-9-numbers-to-words#comments</comments>
		<pubDate>Sun, 13 Mar 2011 11:46:13 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Util-a-day]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=454</guid>
		<description><![CDATA[Utility to take a number and convert it to the english text. Not mine this one but lost the original url! If it&#8217;s yours let me know public class NumberToWords &#123; // Single-digit and small number names private string&#91;&#93; _smallNumbers = new string&#91;&#93; &#123; &#34;Zero&#34;, &#34;One&#34;, &#34;Two&#34;, &#34;Three&#34;, &#34;Four&#34;, &#34;Five&#34;, &#34;Six&#34;, &#34;Seven&#34;, &#34;Eight&#34;, &#34;Nine&#34;, &#34;Ten&#34;, [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/c/uad-9-numbers-to-words/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UAD8: Query String Builder</title>
		<link>http://www.fruitbatscode.com/net/c/uad8-query-string-builder</link>
		<comments>http://www.fruitbatscode.com/net/c/uad8-query-string-builder#comments</comments>
		<pubDate>Sun, 13 Mar 2011 11:40:21 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[My Stuff]]></category>
		<category><![CDATA[Util-a-day]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=451</guid>
		<description><![CDATA[Ever had controls that need to add to the Query String but not duplicate or erase what&#8217;s already there? This is a little utility I dug out and just changed to use a generic dictionary recently. Just use it as you would a normal dictionary. When you instantiate a copy it picks up the current [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/c/uad8-query-string-builder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UAD6 &#8211; Physical path to virtual</title>
		<link>http://www.fruitbatscode.com/net/c/uad6-physical-path-to-virtual</link>
		<comments>http://www.fruitbatscode.com/net/c/uad6-physical-path-to-virtual#comments</comments>
		<pubDate>Tue, 07 Dec 2010 13:28:04 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Util-a-day]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=433</guid>
		<description><![CDATA[Simple util to take a physical path and gets its virtual equivalent. public static string PhysicalPathToVirtual&#40;string path&#41; &#123; if &#40;HttpContext.Current != null &#38;&#38; !String.IsNullOrEmpty&#40;path&#41;&#41; &#123; return &#34;/&#34; + path.Replace&#40;HttpContext.Current.Server.MapPath&#40;&#34;/&#34;&#41;, &#34;&#34;&#41;.Replace&#40;@&#34;\&#34;, &#34;/&#34;&#41;; &#125; else return null; &#125; public static string PhysicalPathToVirtual&#40;HttpContext context, string path&#41; &#123; if &#40;context != null &#38;&#38; !String.IsNullOrEmpty&#40;path&#41;&#41; &#123; return &#34;/&#34; + path.Replace&#40;context.Server.MapPath&#40;&#34;/&#34;&#41;, [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/c/uad6-physical-path-to-virtual/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jayrock &#8211; Converting to string and back</title>
		<link>http://www.fruitbatscode.com/javascript/jayrock-converting-to-string-and-back</link>
		<comments>http://www.fruitbatscode.com/javascript/jayrock-converting-to-string-and-back#comments</comments>
		<pubDate>Mon, 15 Feb 2010 11:34:06 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=372</guid>
		<description><![CDATA[I always seem to forget how to do this so I&#8217;m just leaving a note for myself To convert to string: Jayrock.Json.Conversion.JsonConvert.ExportToString([object]); To convert back again ([object])Jayrock.Json.Conversion.JsonConvert.Import(typeof([object]), result);]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jayrock-converting-to-string-and-back/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CMS Update &#8211; Preparing for BETA!</title>
		<link>http://www.fruitbatscode.com/cms/cms-update-preparing-for-release</link>
		<comments>http://www.fruitbatscode.com/cms/cms-update-preparing-for-release#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:37:25 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=368</guid>
		<description><![CDATA[It&#8217;s been a bit quite round here recently! Don&#8217;t be fooled! The CMS is more or less finished. Just refactoring and preparing bits and bobs. The actual core itself hasn&#8217;t really changed in 6 months and is independent from the CMS, it handles all the page, content and control creation with a single base class that you [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/cms/cms-update-preparing-for-release/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get Rendered Html From a Control</title>
		<link>http://www.fruitbatscode.com/net/c/get-rendered-html-from-a-control</link>
		<comments>http://www.fruitbatscode.com/net/c/get-rendered-html-from-a-control#comments</comments>
		<pubDate>Mon, 16 Nov 2009 12:32:53 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=352</guid>
		<description><![CDATA[Whilst working on the CMS I needed to be able to pass back the html a control will render when the user first adds it. The control doesn&#8217;t exist on the page yet as the sections are added via javascript. It was very easy to pass in StringWriter to the render function to get the [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/c/get-rendered-html-from-a-control/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CMS Framework &#8211; Update</title>
		<link>http://www.fruitbatscode.com/net/cms-framework-update</link>
		<comments>http://www.fruitbatscode.com/net/cms-framework-update#comments</comments>
		<pubDate>Sun, 16 Aug 2009 15:48:16 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=304</guid>
		<description><![CDATA[Been a bit quiet round here lately but not because I&#8217;ve not been working on it I&#8217;ve been using it for a project at work and converting a lot of my stuff to be compatible with it.  It&#8217;s running  a site atm and doing well. Alpha State Mainly in alpha because things may yet change [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/cms-framework-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Asp.net StringBuilder Literal Control</title>
		<link>http://www.fruitbatscode.com/net/aspnet/simple-asp-net-stringbuilder-literal-control</link>
		<comments>http://www.fruitbatscode.com/net/aspnet/simple-asp-net-stringbuilder-literal-control#comments</comments>
		<pubDate>Thu, 13 Aug 2009 08:29:00 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=299</guid>
		<description><![CDATA[It always annoys me that Literal controls only have a text property. This means you have to do: Literal.Text += "Add me"; Whereas a StringBuilder would make much more sense when building lists etc. Heres a stupidly simple control that just supplies a string builder as the text property. Not exactly a good code example(shouldn&#8217;t [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/aspnet/simple-asp-net-stringbuilder-literal-control/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a CMS Framework &#8211; The Plan</title>
		<link>http://www.fruitbatscode.com/cms/creating-a-cms-framework-the-plan</link>
		<comments>http://www.fruitbatscode.com/cms/creating-a-cms-framework-the-plan#comments</comments>
		<pubDate>Mon, 18 May 2009 21:04:13 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=243</guid>
		<description><![CDATA[I&#8217;ve now written 4 cms&#8217; and have decided as a personal project to create a core system that can easily be adapted to many tasks.  Over the past 4 cms&#8217; I&#8217;ve used the same code a lot and created a central core of utils (imaginatively called Gist!) but I want to go a step further [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/cms/creating-a-cms-framework-the-plan/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

