<?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>WhyPad.com &#187; ASP.NET/C#</title>
	<atom:link href="http://www.whypad.com/tag/aspnet-c-sharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whypad.com</link>
	<description>Tools and Tricks for Life and Tech</description>
	<lastBuildDate>Tue, 06 Dec 2011 22:35:45 +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>C#: Break vs. Continue in Foreach Loops</title>
		<link>http://www.whypad.com/posts/c-break-vs-continue-in-foreach-loops/776/</link>
		<comments>http://www.whypad.com/posts/c-break-vs-continue-in-foreach-loops/776/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 14:17:40 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=776</guid>
		<description><![CDATA[A C# Quick Tip: You&#8217;ve probably seen &#8216;break&#8217; before in Switch Case statements, but it also plays an important role in Foreach Loops. To break completely out of a foreach loop (foregoing all the remaining loops), use: break; To go to the next iteration in the loop, use: continue; When is &#8216;break&#8217; useful? It is [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/c-break-vs-continue-in-foreach-loops/776/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C#: That Pesky DBNull Error in Datatables</title>
		<link>http://www.whypad.com/posts/c-that-pesky-dbnull-error-in-datatables/767/</link>
		<comments>http://www.whypad.com/posts/c-that-pesky-dbnull-error-in-datatables/767/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 21:42:02 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=767</guid>
		<description><![CDATA[Datatables and Tableadapters are one of the most beautiful things about C# and Visual Studio, until you&#8217;re processing rows in your datatable and you get something that reads like &#8220;The value for column &#8216;your_column&#8217; in table &#8216;your_table&#8217; is DBNull.&#8221;  If you go a little further, you may get:  &#8220;Exception Details: System.InvalidCastException: Specified cast is not [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/c-that-pesky-dbnull-error-in-datatables/767/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C# &#8211; SQL Server Foreign Key, Unique constraints</title>
		<link>http://www.whypad.com/posts/c-sql-server-foreign-key-unique-constraints/682/</link>
		<comments>http://www.whypad.com/posts/c-sql-server-foreign-key-unique-constraints/682/#comments</comments>
		<pubDate>Wed, 27 May 2009 21:40:24 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=682</guid>
		<description><![CDATA[I got tripped up today with a particularly nasty Join statement that worked perfectly form 90% of the queries, but was blowing up at times.  The error message was:  Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. I looked and looked at this SQL code: It looked [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/c-sql-server-foreign-key-unique-constraints/682/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get ASP.NET DropDownList Selected Value with jQuery</title>
		<link>http://www.whypad.com/posts/get-aspnet-server-dropdownlist-selected-value-with-jquery/418/</link>
		<comments>http://www.whypad.com/posts/get-aspnet-server-dropdownlist-selected-value-with-jquery/418/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 22:19:00 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[Javascript Frameworks]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=418</guid>
		<description><![CDATA[With Microsoft&#8217;s recent announcement that they will begin shipping jQuery with Visual Studio, the little Javascript framework is about to hit the big time (it was already sort of big time, but this is BIG TIME).  And rightfully so. I have been a Prototype and Scriptaculous user for over a year now.  But I am [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/get-aspnet-server-dropdownlist-selected-value-with-jquery/418/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ASP.NET &#8211; C# &#8211; Emulating the VB Control Array &#8211; Pt. 1</title>
		<link>http://www.whypad.com/posts/aspnet-emulating-control-array/388/</link>
		<comments>http://www.whypad.com/posts/aspnet-emulating-control-array/388/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 18:25:05 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=388</guid>
		<description><![CDATA[For you veterans of VB6, the control array probably became an old friend, or at least an annoying neighbor if you didn&#8217;t like them.  You couldn&#8217;t help run across the concept in VB6 because every time you copy and pasted a control for the first time, you got asked if you wanted to create a control array. If [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/aspnet-emulating-control-array/388/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>ASP.Net C# &#8211; PHP  Equivalents</title>
		<link>http://www.whypad.com/posts/aspnet-c-sharp-php-equivalents/263/</link>
		<comments>http://www.whypad.com/posts/aspnet-c-sharp-php-equivalents/263/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 21:05:36 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=263</guid>
		<description><![CDATA[On this post, I will be collecting ASP.NET C# commands that I use frequently in PHP but I have to continually look up in the little bit of ASP.NET that I do.  PHP can be frustrating for its inconsistencies in syntax, but what is even more frustrating is when you&#8217;re trying to do something in [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/aspnet-c-sharp-php-equivalents/263/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET/C#: Convert HTML Colors to System.Drawing.Color</title>
		<link>http://www.whypad.com/posts/aspnetc-convert-html-colors-to-systemdrawingcolor/171/</link>
		<comments>http://www.whypad.com/posts/aspnetc-convert-html-colors-to-systemdrawingcolor/171/#comments</comments>
		<pubDate>Wed, 14 May 2008 16:34:58 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=171</guid>
		<description><![CDATA[HTML colors come in all sorts of flavors: hexadecimal (#0066ff), named colors (e.g. LightSkyBlue&#8230;here&#8217;s the link). Many people may be very comfortable with working with HTML colors, so if you&#8217;re in C# and needing to get the .Net equivalent, you can translate directly from HTML colors with System.Drawing.ColorTranslator.FromHtml(). Here&#8217;s the usage: System.Drawing.Color myColor = System.Drawing.ColorTranslator.FromHtml("Red"); [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/aspnetc-convert-html-colors-to-systemdrawingcolor/171/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

