<?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>caliberweb.com &#187; Legacy Code</title>
	<atom:link href="http://chris.caliberweb.com/tags/legacy-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://chris.caliberweb.com</link>
	<description></description>
	<lastBuildDate>Mon, 01 Jun 2009 22:35:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Legacy ASP.NET == typeof(Satan)</title>
		<link>http://chris.caliberweb.com/2009/03/02/legacy-aspnet-typeofsatan/</link>
		<comments>http://chris.caliberweb.com/2009/03/02/legacy-aspnet-typeofsatan/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 23:48:06 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Legacy Code]]></category>

		<guid isPermaLink="false">http://chris.caliberweb.com/?p=53</guid>
		<description><![CDATA[
        &#039;clean up any previous data if present
        &#039;start with the checkboxes
        Dim tblControl As HtmlTable = CType(checkBoxes.Controls(0), HtmlTable)
        For Each control As System.Web.UI.Control In tblControl.Controls
  [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush: vb">
        &#039;clean up any previous data if present
        &#039;start with the checkboxes
        Dim tblControl As HtmlTable = CType(checkBoxes.Controls(0), HtmlTable)
        For Each control As System.Web.UI.Control In tblControl.Controls
            If (TypeOf control Is System.Web.UI.HtmlControls.HtmlTableRow) Then
                For Each rowControl As System.Web.UI.Control In control.Controls
                    If (TypeOf rowControl Is System.Web.UI.HtmlControls.HtmlTableCell) Then
                        For Each cellControl As System.Web.UI.Control In rowControl.Controls
                            If (TypeOf cellControl Is System.Web.UI.WebControls.CheckBox) Then
                                Dim chkBox As System.Web.UI.WebControls.CheckBox = CType(cellControl, System.Web.UI.WebControls.CheckBox)
                                chkBox.Checked = False
                            End If
                        Next
                    End If
                Next
            End If
        Next
</pre>
]]></content:encoded>
			<wfw:commentRss>http://chris.caliberweb.com/2009/03/02/legacy-aspnet-typeofsatan/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
