<?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>CodeDoc</title>
	<atom:link href="http://www.pierrebuckley.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pierrebuckley.com</link>
	<description>The Blog of Pierre Buckley</description>
	<lastBuildDate>Sat, 22 Oct 2011 04:55:29 +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>How To Fix: &#8216;Sys&#8217; is undefined or &#8216;AjaxControlToolkit&#8217; is undefined javascript errors</title>
		<link>http://www.pierrebuckley.com/2011/09/15/how-to-fix-sys-is-undefined-or-ajaxcontroltoolkit-is-undefined-javascript-errors/</link>
		<comments>http://www.pierrebuckley.com/2011/09/15/how-to-fix-sys-is-undefined-or-ajaxcontroltoolkit-is-undefined-javascript-errors/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 21:17:26 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Ajax Control Toolkit]]></category>
		<category><![CDATA[ASP.NET Ajax]]></category>
		<category><![CDATA[error]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=327</guid>
		<description><![CDATA[I developed an ASP.NET application for my company that is configured on several laptops. Yesterday I was given the task to fix an error that was causing the ASP.NET Ajax features to flake and not work. I spent hours on Google searching for an answer. If you did before reading this article, I wont be [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2011/09/15/how-to-fix-sys-is-undefined-or-ajaxcontroltoolkit-is-undefined-javascript-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Centering A Website Using CSS</title>
		<link>http://www.pierrebuckley.com/2011/05/15/quick-tip-centering-a-website-using-css/</link>
		<comments>http://www.pierrebuckley.com/2011/05/15/quick-tip-centering-a-website-using-css/#comments</comments>
		<pubDate>Mon, 16 May 2011 01:04:26 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=297</guid>
		<description><![CDATA[It&#39;s very easy to centre your website using CSS. All you have to do is apply the following CSS to your website&#39;s outermost container, even if it is a table or div element. Also, remember that the container must have a defined width! HTML &#60;div class=&#34;container&#34;&#62;...website markup here...&#60;/div&#62; CSS div.container {margin-left: auto; margin-right: auto; width: [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2011/05/15/quick-tip-centering-a-website-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading Text Files in .NET &#8211; The Easy Way</title>
		<link>http://www.pierrebuckley.com/2010/11/21/reading-text-files-in-net-the-easy-way/</link>
		<comments>http://www.pierrebuckley.com/2010/11/21/reading-text-files-in-net-the-easy-way/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 05:55:00 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=283</guid>
		<description><![CDATA[I don&#39;t know about you fellow .NET programmers, but I don&#39;t often come across a need to read from text files often when I am programing in .NET. As such, I find that every time I need to do this, I have to use Google to refresh myself on how to do it. Recently, i [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2010/11/21/reading-text-files-in-net-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing JavaScript Alert on Server Side</title>
		<link>http://www.pierrebuckley.com/2010/10/17/implementing-javascript-alert-on-server-side/</link>
		<comments>http://www.pierrebuckley.com/2010/10/17/implementing-javascript-alert-on-server-side/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 23:27:15 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Server Side]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=205</guid>
		<description><![CDATA[Ever so often, an application must communicate with its user when it is working. The most basic of methods is to display a popup message, usually when a task is complete or some error has occurred. In windows form programming, displaying a popup message box to the user is really easy. Unfortunately, this is not [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2010/10/17/implementing-javascript-alert-on-server-side/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resolving Connection Error with MySQL Migration Toolkit</title>
		<link>http://www.pierrebuckley.com/2010/06/02/resolving-connection-error-with-mysql-migration-toolkit/</link>
		<comments>http://www.pierrebuckley.com/2010/06/02/resolving-connection-error-with-mysql-migration-toolkit/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 17:02:30 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=195</guid>
		<description><![CDATA[If you are here because you are getting the dreaded &#8220;Network error IOException: Connection Refused: connect in MS SQL Server 2000&#8221; error message with the MySQL migration toolkit and need a solution, then you have come to the right place. &#160; I recently needed to migrate some data I had in a SQL Server 2005 [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2010/06/02/resolving-connection-error-with-mysql-migration-toolkit/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Handling Null Values in SQL Server</title>
		<link>http://www.pierrebuckley.com/2010/05/28/handling-null-values-in-sql-server/</link>
		<comments>http://www.pierrebuckley.com/2010/05/28/handling-null-values-in-sql-server/#comments</comments>
		<pubDate>Fri, 28 May 2010 05:49:30 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=115</guid>
		<description><![CDATA[From time to time, we may want to replace NULL values with some desired value when doing an sql select statement. Turns out that SQL Server makes this a simple task &#8211; and no IF statements are necessary! To do this, we use SQL Server&#39;s ISNULL function. This function takes two parameters. The first parameter [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2010/05/28/handling-null-values-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>5 Great Web Developer Tools</title>
		<link>http://www.pierrebuckley.com/2010/02/08/5-great-web-developer-tools/</link>
		<comments>http://www.pierrebuckley.com/2010/02/08/5-great-web-developer-tools/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 04:41:21 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[Top Lists]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=104</guid>
		<description><![CDATA[A web developer&#8217;s life is never an easy one. I know and understand this, and so I thought I would share my top five, must have, tools that I use from day to day. They are in no particular order and are great tools. They have saved me countless hours of additional work and have [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2010/02/08/5-great-web-developer-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternative to MySQL&#8217;s LIMIT Command</title>
		<link>http://www.pierrebuckley.com/2009/12/20/alternative-to-mysqls-limit-command/</link>
		<comments>http://www.pierrebuckley.com/2009/12/20/alternative-to-mysqls-limit-command/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 08:27:58 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[limit]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=60</guid>
		<description><![CDATA[I recently ran into the situation where I needed to create a query in MySQL that counted up to n rows from a result set. I scoffed at the challenge and proceeded to go for the one tool I thought could do the job &#8211; MySQL&#39;s LIMIT command. Unfortunately, the result I got was not [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2009/12/20/alternative-to-mysqls-limit-command/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>ASP.NET from Scratch Tutorial Series</title>
		<link>http://www.pierrebuckley.com/2009/12/14/asp-net-from-scratch/</link>
		<comments>http://www.pierrebuckley.com/2009/12/14/asp-net-from-scratch/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 05:12:27 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=45</guid>
		<description><![CDATA[Very good screencast that introduces ASP.Net. Authored by Jeremy McPeak and hosted at Nettuts. So far there are only two lessons available.]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2009/12/14/asp-net-from-scratch/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>I Am Back!</title>
		<link>http://www.pierrebuckley.com/2009/09/30/i-am-back/</link>
		<comments>http://www.pierrebuckley.com/2009/09/30/i-am-back/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 04:41:00 +0000</pubDate>
		<dc:creator>Pierre Buckley</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pierrebuckley.com/?p=10</guid>
		<description><![CDATA[After being absent for way too long, I decided to dust off this blog and try running with it again. I must say that I am much more experienced than when I first started this blog and I have so much more to share. I will be sharing this information with everyone in the coming [...]]]></description>
		<wfw:commentRss>http://www.pierrebuckley.com/2009/09/30/i-am-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

