<?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>Xrum! Blog... &#187; .Net</title>
	<atom:link href="http://xrumxrum.com/blog/category/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://xrumxrum.com/blog</link>
	<description>Xrum! - connecting people...</description>
	<lastBuildDate>Thu, 26 Aug 2010 20:57:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Migrating and Encrypting</title>
		<link>http://xrumxrum.com/blog/2010/05/12/migrating-and-encrypting/</link>
		<comments>http://xrumxrum.com/blog/2010/05/12/migrating-and-encrypting/#comments</comments>
		<pubDate>Wed, 12 May 2010 14:29:01 +0000</pubDate>
		<dc:creator>Zu</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=198</guid>
		<description><![CDATA[getOldUsers &#8211; read the ds one by one from the old db, where the passwords are not yet encrypted.
InsertUserx &#8211; writes the users into your new (current) db, with passwords encrypted.

Public Function MigrateUser() As Integer
Dim dr As DataRow
Dim ds As DataSet
Dim dt As DataTable
Dim userID As Integer
ds = getOldUsers()
dt = ds.Tables(0)
For Each dr In dt.Rows
newPass [...]]]></description>
		<wfw:commentRss>http://xrumxrum.com/blog/2010/05/12/migrating-and-encrypting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET Repeaters Cheat Sheet (vb)</title>
		<link>http://xrumxrum.com/blog/2010/03/17/net-repeaters-cheat-sheet-vb/</link>
		<comments>http://xrumxrum.com/blog/2010/03/17/net-repeaters-cheat-sheet-vb/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 19:04:53 +0000</pubDate>
		<dc:creator>Zu</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=156</guid>
		<description><![CDATA[&#60;asp:Repeater ID=&#8221;rpPostTest&#8221; runat=&#8221;server&#8221; OnItemDataBound=&#8221;rpPostTest_OnItemDataBound&#8221;&#62;
&#60;ItemTemplate&#62;
&#60;asp:Label ID=&#8221;lblQuestion&#8221; runat=&#8221;server&#8221;&#62;&#60;/asp:Label&#62;
&#60;asp:Label ID=&#8221;lblQID&#8221; visible=&#8221;false&#8221; runat=&#8221;server&#8221;&#62;&#60;/asp:Label&#62;
&#60;br /&#62;
&#60;asp:RadioButtonList ID=&#8221;answer&#8221; runat=&#8221;server&#8221; Ã‚Â &#62;
&#60;asp:ListItem Ã‚Â  Ã‚Â Text=&#8221;True&#8221; Ã‚Â Value=&#8221;T&#8221; &#62;&#60;/asp:ListItem&#62;
&#60;asp:ListItem Ã‚Â  Text=&#8221;False&#8221; Ã‚Â Value=&#8221;F&#8221;&#62;&#60;/asp:ListItem&#62;
&#60;/asp:RadioButtonList&#62;
&#60;hr /&#62;
&#60;/ItemTemplate&#62;
&#60;/asp:Repeater&#62;
create the repeater

&#60;asp:Repeater ID=&#34;rpPostTest&#34; runat=&#34;server&#34; OnItemDataBound=&#34;rpPostTest_OnItemDataBound&#34;&#62;
&#60;ItemTemplate&#62;
&#60;asp:Label ID=&#34;lblQuestion&#34; runat=&#34;server&#34;&#62;&#60;/asp:Label&#62;
&#60;asp:Label ID=&#34;lblQID&#34; visible=&#34;false&#34; runat=&#34;server&#34;&#62;&#60;/asp:Label&#62;
&#60;br /&#62;
&#60;asp:RadioButtonList ID=&#34;answer&#34; runat=&#34;server&#34;Â  &#62;
&#60;asp:ListItemÂ  Text=&#34;True&#34;Â  Value=&#34;T&#34; &#62;&#60;/asp:ListItem&#62;
&#60;asp:ListItemÂ Â  Text=&#34;False&#34;Â  Value=&#34;F&#34;&#62;&#60;/asp:ListItem&#62;
&#60;/asp:RadioButtonList&#62;
&#60;hr /&#62;
&#60;/ItemTemplate&#62;
&#60;/asp:Repeater&#62;

back end code:

databind the repeater itself

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) [...]]]></description>
		<wfw:commentRss>http://xrumxrum.com/blog/2010/03/17/net-repeaters-cheat-sheet-vb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A few useful things to remember&#8230;</title>
		<link>http://xrumxrum.com/blog/2009/11/30/a-few-useful-things-to-remember/</link>
		<comments>http://xrumxrum.com/blog/2009/11/30/a-few-useful-things-to-remember/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 20:52:04 +0000</pubDate>
		<dc:creator>Zu</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=125</guid>
		<description><![CDATA[App_Offline.htm 
&#8220;The way app_offline.htm works is that you place this file in the root of the application.Ã‚Â  When ASP.NET sees it, it will shut-down the app-domain for the application (and not restart it for requests) and instead send back the contents of the app_offline.htm file in response to all new dynamic requests for the application.Ã‚Â  [...]]]></description>
		<wfw:commentRss>http://xrumxrum.com/blog/2009/11/30/a-few-useful-things-to-remember/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2005 Remote Debugger</title>
		<link>http://xrumxrum.com/blog/2009/11/16/visual-studio-2005-remote-debugger/</link>
		<comments>http://xrumxrum.com/blog/2009/11/16/visual-studio-2005-remote-debugger/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 18:32:25 +0000</pubDate>
		<dc:creator>Zu</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://xrumxrum.com/blog/?p=114</guid>
		<description><![CDATA[I&#8217;ve had to do it 2 times so far, and each time i do it i have issues, which could be eliminated, if I saved my notes from the first time. so here goes.
1.Ã‚Â  from the Visual Studio CD, browse to tools -&#62; remote debugger -&#62; pick the right format and (x86 or x64) and [...]]]></description>
		<wfw:commentRss>http://xrumxrum.com/blog/2009/11/16/visual-studio-2005-remote-debugger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
