<?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>iandevlin.com - blog &#187; .net</title>
	<atom:link href="http://www.iandevlin.com/blog/category/net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iandevlin.com/blog</link>
	<description>A mixture of musings on web design &#38; development, history, and life</description>
	<lastBuildDate>Sat, 14 Jan 2012 11:57:10 +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>Configuring RSS with IIS</title>
		<link>http://www.iandevlin.com/blog/2010/03/net/configuring-rss-with-iis</link>
		<comments>http://www.iandevlin.com/blog/2010/03/net/configuring-rss-with-iis#comments</comments>
		<pubDate>Tue, 23 Mar 2010 15:01:12 +0000</pubDate>
		<dc:creator>Ian Devlin</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.iandevlin.com/blog/?p=635</guid>
		<description><![CDATA[Any time I&#8217;ve created my own XML file for RSS feeds, it&#8217;s been on a server running Apache, and it&#8217;s usually worked fine, barring semantic errors on my part. However getting it to work on a Windows Server running IIS is a slightly different matter, as I found out today. IIS was constantly returning with [...]]]></description>
		<wfw:commentRss>http://www.iandevlin.com/blog/2010/03/net/configuring-rss-with-iis/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>.NET DataGrid rendering with border-collapse</title>
		<link>http://www.iandevlin.com/blog/2010/03/net/net-datagrid-rendering-with-border-collapse</link>
		<comments>http://www.iandevlin.com/blog/2010/03/net/net-datagrid-rendering-with-border-collapse#comments</comments>
		<pubDate>Tue, 16 Mar 2010 16:55:57 +0000</pubDate>
		<dc:creator>Ian Devlin</dc:creator>
				<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://www.iandevlin.com/blog/?p=621</guid>
		<description><![CDATA[I&#8217;ve been working on some old .NET code which previously worked with Internet Explorer only. I&#8217;m currently updating it so that it works with most major browsers rather than limiting it to the one. By and large it&#8217;s fairly easy to do, a bit time consuming and fiddly at times as it&#8217;s mainly JavaScript tweaks [...]]]></description>
		<wfw:commentRss>http://www.iandevlin.com/blog/2010/03/net/net-datagrid-rendering-with-border-collapse/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing data records from Excel and CSV files in VB.NET</title>
		<link>http://www.iandevlin.com/blog/2010/01/net/accessing-data-records-from-excel-and-csv-files-in-vb-net</link>
		<comments>http://www.iandevlin.com/blog/2010/01/net/accessing-data-records-from-excel-and-csv-files-in-vb-net#comments</comments>
		<pubDate>Thu, 28 Jan 2010 20:34:44 +0000</pubDate>
		<dc:creator>Ian Devlin</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.iandevlin.com/blog/?p=436</guid>
		<description><![CDATA[One of the first projects I undertook when I started at my current workplace was to produce a data migrator that ported user data records from a client system to one of our systems. This was written in VB.NET (for compatibility reasons) and the data sources were both Microsoft SQL Server 2005 systems. Recently I&#8217;ve [...]]]></description>
		<wfw:commentRss>http://www.iandevlin.com/blog/2010/01/net/accessing-data-records-from-excel-and-csv-files-in-vb-net/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Generating a relative path in C#</title>
		<link>http://www.iandevlin.com/blog/2010/01/csharp/generating-a-relative-path-in-csharp</link>
		<comments>http://www.iandevlin.com/blog/2010/01/csharp/generating-a-relative-path-in-csharp#comments</comments>
		<pubDate>Fri, 08 Jan 2010 12:36:14 +0000</pubDate>
		<dc:creator>Ian Devlin</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.iandevlin.com/blog/?p=341</guid>
		<description><![CDATA[Today I was looking for a way to find a relative path between one absolute directory and another in C#. The .NET libraries themselves don&#8217;t seem to have anything that helps with this so I performed the obligatory Google search and came across a handy little function written by Peter Morris which I&#8217;ve now incorporated [...]]]></description>
		<wfw:commentRss>http://www.iandevlin.com/blog/2010/01/csharp/generating-a-relative-path-in-csharp/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Adding multiple .NET User Controls that use JavaScript to the same page</title>
		<link>http://www.iandevlin.com/blog/2009/12/webdev/adding-multiple-net-user-controls-that-use-javascript-to-the-same-page</link>
		<comments>http://www.iandevlin.com/blog/2009/12/webdev/adding-multiple-net-user-controls-that-use-javascript-to-the-same-page#comments</comments>
		<pubDate>Mon, 07 Dec 2009 11:23:23 +0000</pubDate>
		<dc:creator>Ian Devlin</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=160</guid>
		<description><![CDATA[The Background Recently I was faced with the task of taking some existing VB.NET code and converting it to C#. Not so difficult so far you&#8217;ll say, and you&#8217;d be right. However, some of the code on this particular page was contained within a]]></description>
		<wfw:commentRss>http://www.iandevlin.com/blog/2009/12/webdev/adding-multiple-net-user-controls-that-use-javascript-to-the-same-page/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

