<?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; asp.net</title>
	<atom:link href="http://www.raihaniqbal.net/blog/category/net/aspnet/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>Using Jquery Grid with ASP.NET MVC</title>
		<link>http://www.raihaniqbal.net/blog/2009/07/using-jquery-grid-with-asp-net-mvc/</link>
		<comments>http://www.raihaniqbal.net/blog/2009/07/using-jquery-grid-with-asp-net-mvc/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 07:00:57 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/?p=63</guid>
		<description><![CDATA[This excellent article from Phil Haack shows you how you can use the excellent JGrid plugin with ASP.NET MVC. Thanks Phil! http://haacked.com/archive/2009/04/14/using-jquery-grid-with-asp.net-mvc.aspx]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2009/07/using-jquery-grid-with-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Maintenance Mode Module</title>
		<link>http://www.raihaniqbal.net/blog/2009/06/asp-net-maintenance-mode-module/</link>
		<comments>http://www.raihaniqbal.net/blog/2009/06/asp-net-maintenance-mode-module/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 22:54:53 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/2009/06/asp-net-maintenance-mode-module/</guid>
		<description><![CDATA[Web developers at times need to put their web applications in an offline mode so as to prevent visitors from accessing the site while they are updating it. The classic way to do this would be to upload an app_offline.html file to the root of the web application. The limitation of this technique is that [...]]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2009/06/asp-net-maintenance-mode-module/feed/</wfw:commentRss>
		<slash:comments>3</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>The Controls collection cannot be modified because the control contains code blocks</title>
		<link>http://www.raihaniqbal.net/blog/2009/02/the-controls-collection-cannot-be-modified-because-the-control-contains-code-blocks/</link>
		<comments>http://www.raihaniqbal.net/blog/2009/02/the-controls-collection-cannot-be-modified-because-the-control-contains-code-blocks/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 11:28:42 +0000</pubDate>
		<dc:creator>Raihan Iqbal</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.raihaniqbal.net/blog/the-controls-collection-cannot-be-modified-because-the-control-contains-code-blocks/</guid>
		<description><![CDATA[I’m pretty much sure many of you have encountered this error if you have been using Code blocks inside your ASP.NET master pages for example, 1: &#60;img src='&#60;%= Page.ResolveUrl(&#34;~/image/top-mnu-agents.jpg&#34;) %&#62;' alt=&#34;Agents&#34; name=&#34;agents&#34; 2: width=&#34;109&#34; height=&#34;42&#34; border=&#34;0&#34; id=&#34;agents&#34; /&#62;&#60;/a&#62; .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: [...]]]></description>
		<wfw:commentRss>http://www.raihaniqbal.net/blog/2009/02/the-controls-collection-cannot-be-modified-because-the-control-contains-code-blocks/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>

