<?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>.Randomizzzer</title>
	<atom:link href="http://www.randomizzzer.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.randomizzzer.com</link>
	<description>sharedom: sharepoint random</description>
	<lastBuildDate>Wed, 22 Feb 2012 14:21:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How to: Sort and Reverse a DataTable</title>
		<link>http://www.randomizzzer.com/2012/02/how-to-sort-and-reverse-a-datatable/</link>
		<comments>http://www.randomizzzer.com/2012/02/how-to-sort-and-reverse-a-datatable/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 14:21:04 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[DataTable]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[sorting]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=936</guid>
		<description><![CDATA[&#160; In order to sort/order the rows of a DataTable, we need to pass them through to an array of DataRow and access the DataTable’s “select” method. &#160; If the DataTable is called dtDocuments. &#160; To order: DataRow[] drDocuments = dtDocuments.Select(null, “nameOfColumn”); &#160; The above will create an array of DataRow. The members of the [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/02/how-to-sort-and-reverse-a-datatable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics: Panel VS Placeholder (ASP.NET)</title>
		<link>http://www.randomizzzer.com/2012/02/basics-panel-vs-placeholder-asp-net/</link>
		<comments>http://www.randomizzzer.com/2012/02/basics-panel-vs-placeholder-asp-net/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 11:10:13 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Back to Basics]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[placeholder]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=927</guid>
		<description><![CDATA[&#160; One more thing to keep in mind when working with ASP.NET is the difference between the two most commonly used controls to add other controls in a specific position on a page. &#160; The main differences are: 1. A panel expands to a span (or a div), with it&#8217;s content within it. ie. all [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/02/basics-panel-vs-placeholder-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics: Page/Control Lifecycle (ASP.NET)</title>
		<link>http://www.randomizzzer.com/2012/02/basics-pagecontrol-lifecycle-asp-net/</link>
		<comments>http://www.randomizzzer.com/2012/02/basics-pagecontrol-lifecycle-asp-net/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 10:48:11 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Back to Basics]]></category>
		<category><![CDATA[lifecycle]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=922</guid>
		<description><![CDATA[Embarrassing as it may be, I need to keep a note of the lifecycle of pages and controls cause, still, there are times when I mix them up. Page Lifecycle: 1. PreInit 2. InitComplete 3. PreLoad 4. LoadComplete 5. PreRenderComplete 6. SaveStateComplete Control Lifecycle: 1. Init 2. Load 3. PreRender 4. Unload NOTE: MasterPages and [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/02/basics-pagecontrol-lifecycle-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Get the currently logged on user&#8217;s Username and ID (ASP.NET &#8211; v:3.5+)</title>
		<link>http://www.randomizzzer.com/2012/02/how-to-get-the-currently-logged-on-users-username-and-id-asp-net-v3-5/</link>
		<comments>http://www.randomizzzer.com/2012/02/how-to-get-the-currently-logged-on-users-username-and-id-asp-net-v3-5/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 16:09:04 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[guid]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=915</guid>
		<description><![CDATA[There’s very easy and practical way to deal with the need to get a user’s Username and ID when programming in an ASP.NET environment. Getting the user’s Username is simpler, in the sense that, in order to get a GUID you will need to add both a reference and a “using” statement. On the other [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/02/how-to-get-the-currently-logged-on-users-username-and-id-asp-net-v3-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Add custom Web User Controls to SiteFinity as widgets</title>
		<link>http://www.randomizzzer.com/2012/01/how-to-add-custom-web-user-controls-to-sitefinity-as-widgets/</link>
		<comments>http://www.randomizzzer.com/2012/01/how-to-add-custom-web-user-controls-to-sitefinity-as-widgets/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 15:38:07 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Sitefinity]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=870</guid>
		<description><![CDATA[I started working with Sitefinity lately. An interesting CMS product that helps achieve a lot of functionality right out of the box. However, as the client needed some custom operations, we needed to create reusable controls to be imported into the Sitefinity solution. How do you do that? It’s easy after all. 1. Create your [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/01/how-to-add-custom-web-user-controls-to-sitefinity-as-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics: Dictionary (Create, sort + comparison with Hashtable)</title>
		<link>http://www.randomizzzer.com/2012/01/basics-dictionary/</link>
		<comments>http://www.randomizzzer.com/2012/01/basics-dictionary/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 11:41:46 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Back to Basics]]></category>
		<category><![CDATA[data structures]]></category>
		<category><![CDATA[Dictionary]]></category>
		<category><![CDATA[DropDownList]]></category>
		<category><![CDATA[Quick Tip]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=852</guid>
		<description><![CDATA[Dictionaries are my favourite structure to populate drop down lists. A method that returns a Dictionary will in fact return a list of paired values with keys. In the case of a drop down list, where you will be after some text to be displayed and some value to be stored, the dictionary value will [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/01/basics-dictionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Get random numbers (Random() &amp; RNGCryptoServiceProvider())</title>
		<link>http://www.randomizzzer.com/2012/01/how-to-get-random-numbers-random-and-rngcryptoserviceprovider/</link>
		<comments>http://www.randomizzzer.com/2012/01/how-to-get-random-numbers-random-and-rngcryptoserviceprovider/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 11:22:06 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[RNGCryptoServiceProvider]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=848</guid>
		<description><![CDATA[For use with simple, everyday projects where you might need a simple random number, Random() should be enough. The only thing that you need to make sure when using Random() is that, if you fail to use it correctly, you might end up getting the same number time and again. What you need to keep [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/01/how-to-get-random-numbers-random-and-rngcryptoserviceprovider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Solve the &#8220;empty Ajax Update Panel&#8221; predicament; or, why do controls that live in an UpdatePanel always display last.</title>
		<link>http://www.randomizzzer.com/2012/01/how-to-solve-the-empty-ajax-update-panel-predicament/</link>
		<comments>http://www.randomizzzer.com/2012/01/how-to-solve-the-empty-ajax-update-panel-predicament/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 14:37:51 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[Update Panel]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/?p=840</guid>
		<description><![CDATA[A funny thing happens if you’re using an empty Ajax Update Panel on your page/control definition in order to programmatically add controls from your code behind. Any controls that are defined after the Update Panel will actually appear before it when the page renders. I was losing my mind over this, not knowing if it [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2012/01/how-to-solve-the-empty-ajax-update-panel-predicament/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Get a list of all accessible SQL Servers</title>
		<link>http://www.randomizzzer.com/2011/12/how-to-get-a-list-of-all-accessible-sql-servers/</link>
		<comments>http://www.randomizzzer.com/2011/12/how-to-get-a-list-of-all-accessible-sql-servers/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 10:30:53 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/2011/12/how-to-get-a-list-of-all-accessible-sql-servers/</guid>
		<description><![CDATA[&#160; Open up the terminal and type either of the following two commands: 1. osql –L or 2. sqlcmd –L]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2011/12/how-to-get-a-list-of-all-accessible-sql-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basics: C# Operators</title>
		<link>http://www.randomizzzer.com/2011/12/basics-c-operators/</link>
		<comments>http://www.randomizzzer.com/2011/12/basics-c-operators/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 17:13:39 +0000</pubDate>
		<dc:creator>MGR</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[?:]]></category>
		<category><![CDATA[??]]></category>
		<category><![CDATA[Back to Basics]]></category>
		<category><![CDATA[null coalescing]]></category>
		<category><![CDATA[operator]]></category>
		<category><![CDATA[ternary]]></category>

		<guid isPermaLink="false">http://www.randomizzzer.com/2011/12/basics-c-operators/</guid>
		<description><![CDATA[I might be the only one but I find myself, time after time, needing to go back to some of the most basic elements of programming. Probably the element that I have checked more times than anything else, is the ternary operator. I find it in some colleague’s code, or I find myself needing to [...]]]></description>
		<wfw:commentRss>http://www.randomizzzer.com/2011/12/basics-c-operators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

