<?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>Raihan Iqbal &#187; c#</title>
	<atom:link href="http://www.raihaniqbal.net/blog/category/net/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.raihaniqbal.net/blog</link>
	<description>Life is codetastic!</description>
	<lastBuildDate>Sat, 07 Aug 2010 14:15:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>ASP.NET SlidingMessage Control</title>
		<link>http://www.raihaniqbal.net/blog/2010/07/asp-net-slidingmessage-control/</link>
		<comments>http://www.raihaniqbal.net/blog/2010/07/asp-net-slidingmessage-control/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 14:32:36 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/2010/07/asp-net-slidingmessage-control/</guid>
		<description><![CDATA[The SlidingMessage server control is the ASP.NET version of the excellent jQuery SlidingMessage plugin by Henrik Joreteg. The control is very easy to use with minimal setup – all you have to do is drag and drop the control into your page and voila! you’re ready to go. The binary includes all the necessary javascript [...]]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2010/07/asp-net-slidingmessage-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programmatically extract body of a web page</title>
		<link>http://www.raihaniqbal.net/blog/2009/06/programmatically-extract-body-of-a-web-page/</link>
		<comments>http://www.raihaniqbal.net/blog/2009/06/programmatically-extract-body-of-a-web-page/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 12:33:51 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/2009/06/programmatically-extract-body-of-a-web-page/</guid>
		<description><![CDATA[The technique used in this article can be used to display the contents of an HTML page inside your ASP.NET pages instead of using IFRAMES. System.Net.WebRequest req = System.Net.WebRequest.Create(Request.QueryString["url"]); System.Net.HttpWebResponse resp = (System.Net.HttpWebResponse)req.GetResponse(); System.IO.Stream respStream = resp.GetResponseStream(); System.IO.StreamReader sr = new System.IO.StreamReader(respStream); string responseFromServer = sr.ReadToEnd(); System.Text.RegularExpressions.Regex bodyRegex = new System.Text.RegularExpressions.Regex(@"(]*>[\u0000-\uFFFF]+?)"); System.Text.RegularExpressions.Match bodyMatch = bodyRegex.Match(responseFromServer); [...]]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2009/06/programmatically-extract-body-of-a-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating Tree-like UI structures</title>
		<link>http://www.raihaniqbal.net/blog/2009/02/generating-tree-like-ui-structures/</link>
		<comments>http://www.raihaniqbal.net/blog/2009/02/generating-tree-like-ui-structures/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 07:45:50 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/generating-tree-like-ui-structures/</guid>
		<description><![CDATA[In many of my projects I have had to generate non-binary trees using information from the database and then display them in a “tree-like” structure as shown below. My algorithm is very simple and it makes use of Dan Vanderboom’s excellent Generic Tree Collection but frankly I’m not satisfied with certain aspects of my algorithm. [...]]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2009/02/generating-tree-like-ui-structures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resizing Images In ASP.NET</title>
		<link>http://www.raihaniqbal.net/blog/2009/01/resizing-images-in-aspnet/</link>
		<comments>http://www.raihaniqbal.net/blog/2009/01/resizing-images-in-aspnet/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 04:21:57 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/resizing-images-in-aspnet/</guid>
		<description><![CDATA[I&#8217;m sure there are plenty of similar topics out there but this is my two cents. Lets say you have the following code in your ASP.NET page: &#160;&#160;&#160; 1 Upload a File: &#38;nbsp;&#60;asp:FileUpload ID=&#34;pictureUpload&#34; runat=&#34;server&#34; /&#62;&#60;br /&#62; &#160;&#160;&#160; 2&#160;&#60;asp:Button ID=&#34;btnUpload&#34; runat=&#34;server&#34; Text=&#34;Upload&#34; OnCommand=&#34;handle_ButtonClick&#34; CommandName=&#34;Upload&#34; /&#62; Let&#8217;s look at the event handler code that uploads the [...]]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2009/01/resizing-images-in-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using FlexiGrid in your ASP.NET application</title>
		<link>http://www.raihaniqbal.net/blog/2008/06/using-flexigrid-in-your-aspnet-application/</link>
		<comments>http://www.raihaniqbal.net/blog/2008/06/using-flexigrid-in-your-aspnet-application/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 17:30:58 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/using-flexigrid-in-your-aspnet-application/</guid>
		<description><![CDATA[I&#8217;ve been exploring JQuery for quiet some time now and I&#8217;m already a huge fan! Not only is it light-weight but its extensible too &#8211; there are plugins for everything, just name it! Well, almost everything Today I&#8217;m going to demonstrate how we can use the excellent FlexiGrid plugin in our ASP.NET applications. Add the [...]]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2008/06/using-flexigrid-in-your-aspnet-application/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

