<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: ASP.NET postbacks and URL rewriting</title>
	<atom:link href="http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/feed/" rel="self" type="application/rss+xml" />
	<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/</link>
	<description>IIS, FastCGI, PHP and other interesting stuff</description>
	<lastBuildDate>Sat, 12 May 2012 03:15:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Raj</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-12006</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Sat, 12 May 2012 03:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-12006</guid>
		<description>Thanks a lot for the great article, Ruslany. Its very simple and easy solution. It saved my lots of time....

Thanks again!!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the great article, Ruslany. Its very simple and easy solution. It saved my lots of time&#8230;.</p>
<p>Thanks again!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dorababu</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-12004</link>
		<dc:creator>Dorababu</dc:creator>
		<pubDate>Thu, 10 May 2012 10:41:46 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-12004</guid>
		<description>Can you attach the code used in this article please</description>
		<content:encoded><![CDATA[<p>Can you attach the code used in this article please</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karthik Reddy Chintaparthi</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11923</link>
		<dc:creator>Karthik Reddy Chintaparthi</dc:creator>
		<pubDate>Mon, 27 Feb 2012 11:34:55 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11923</guid>
		<description>Hi Ruslany,

Is this behavior fixed in Microsoft URL Rewrite Module 2.0 for IIS 7 (x64) ? Do we have to still use the fix &quot;form.Action = Request.RawUrl;&quot; ?

Please let us know.

Thanks, Karthik</description>
		<content:encoded><![CDATA[<p>Hi Ruslany,</p>
<p>Is this behavior fixed in Microsoft URL Rewrite Module 2.0 for IIS 7 (x64) ? Do we have to still use the fix &#8220;form.Action = Request.RawUrl;&#8221; ?</p>
<p>Please let us know.</p>
<p>Thanks, Karthik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saeed Neamati</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11899</link>
		<dc:creator>Saeed Neamati</dc:creator>
		<pubDate>Mon, 30 Jan 2012 13:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11899</guid>
		<description>Thanks. The whole article was something I&#039;ve done it before, many times. But, I didn&#039;t know about Request.RawUrl. What I&#039;ve done in my previous projects, was to create a custom form control, and set the action attribute of that, in overridden Render method.

However, this method is really nice and clean. Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks. The whole article was something I&#8217;ve done it before, many times. But, I didn&#8217;t know about Request.RawUrl. What I&#8217;ve done in my previous projects, was to create a custom form control, and set the action attribute of that, in overridden Render method.</p>
<p>However, this method is really nice and clean. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorge</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11854</link>
		<dc:creator>Jorge</dc:creator>
		<pubDate>Mon, 19 Dec 2011 00:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11854</guid>
		<description>Third time that you have saved me hours worth of troubleshooting! The code &quot;form1.Action = Request.RawUrl;&quot; in my codebehind page fixed the issue as you described.  

Thanks again!!!</description>
		<content:encoded><![CDATA[<p>Third time that you have saved me hours worth of troubleshooting! The code &#8220;form1.Action = Request.RawUrl;&#8221; in my codebehind page fixed the issue as you described.  </p>
<p>Thanks again!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bijay</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11829</link>
		<dc:creator>Bijay</dc:creator>
		<pubDate>Thu, 08 Dec 2011 08:35:14 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11829</guid>
		<description>I have an issue in my asp.net web site. Sometimes button click events are not firing and sometimes it is firing.

You can check in the live site also. Here is the link http://www.enjoysharepoint.com/sendmail.aspx .Here if you can send mail to fewlines4biju@gmail.com with ant text. If the events will properly fire then it will not clear the text, but it will show a message &quot;Mail Sent !!!&quot; below to send mail button.

But if the event will not fire then it simply clear the text boxes.

What I feel is that, after I have implemented URL rewritting by using Intelligencia.UrlRewriter.dll , the behaviour changes to this. 

Please let me know any solution for this.

If you will try for 2/3 times, the event is firing.

Waiting for ur replies!!!</description>
		<content:encoded><![CDATA[<p>I have an issue in my asp.net web site. Sometimes button click events are not firing and sometimes it is firing.</p>
<p>You can check in the live site also. Here is the link <a href="http://www.enjoysharepoint.com/sendmail.aspx" rel="nofollow">http://www.enjoysharepoint.com/sendmail.aspx</a> .Here if you can send mail to <a href="mailto:fewlines4biju@gmail.com">fewlines4biju@gmail.com</a> with ant text. If the events will properly fire then it will not clear the text, but it will show a message &#8220;Mail Sent !!!&#8221; below to send mail button.</p>
<p>But if the event will not fire then it simply clear the text boxes.</p>
<p>What I feel is that, after I have implemented URL rewritting by using Intelligencia.UrlRewriter.dll , the behaviour changes to this. </p>
<p>Please let me know any solution for this.</p>
<p>If you will try for 2/3 times, the event is firing.</p>
<p>Waiting for ur replies!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prabhakaran</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11677</link>
		<dc:creator>prabhakaran</dc:creator>
		<pubDate>Sun, 16 Oct 2011 12:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11677</guid>
		<description>Hello,

I am new to IIS 7.5 I have done the URL Rewirte Module 2.0 in my asp.net application.

but i have to still go forward learn 

because, when i try to use http://technofast.ganees.com/ganees to redirect to mypage.aspx?ownpagename=ganees

how do i write the rule to match url here &quot;ganees&quot; is dynamic name that need to access via request.querystring[&quot;ganees&quot;].toString() in  code behind

please help to observe this concept.

Thanks in Advance

with regards,
prabhakaran</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am new to IIS 7.5 I have done the URL Rewirte Module 2.0 in my asp.net application.</p>
<p>but i have to still go forward learn </p>
<p>because, when i try to use <a href="http://technofast.ganees.com/ganees" rel="nofollow">http://technofast.ganees.com/ganees</a> to redirect to mypage.aspx?ownpagename=ganees</p>
<p>how do i write the rule to match url here &#8220;ganees&#8221; is dynamic name that need to access via request.querystring["ganees"].toString() in  code behind</p>
<p>please help to observe this concept.</p>
<p>Thanks in Advance</p>
<p>with regards,<br />
prabhakaran</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: n.T.p</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11643</link>
		<dc:creator>n.T.p</dc:creator>
		<pubDate>Fri, 30 Sep 2011 03:06:51 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11643</guid>
		<description>Thanks !!!!!!!!!!!..............</description>
		<content:encoded><![CDATA[<p>Thanks !!!!!!!!!!!&#8230;&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Babu</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11552</link>
		<dc:creator>Babu</dc:creator>
		<pubDate>Thu, 15 Sep 2011 10:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11552</guid>
		<description>I has a doubt........I want to rewrieUrl with Images....\
Actually we have done this concept but Images r not displaying....all are fine except Images and JQuery Concepts

data is coming but images ae not coming
Could any one please suggest about this problem.</description>
		<content:encoded><![CDATA[<p>I has a doubt&#8230;&#8230;..I want to rewrieUrl with Images&#8230;.\<br />
Actually we have done this concept but Images r not displaying&#8230;.all are fine except Images and JQuery Concepts</p>
<p>data is coming but images ae not coming<br />
Could any one please suggest about this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ruslany</title>
		<link>http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/comment-page-1/#comment-11024</link>
		<dc:creator>ruslany</dc:creator>
		<pubDate>Thu, 19 May 2011 06:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://ruslany.net/2008/10/aspnet-postbacks-and-url-rewriting/#comment-11024</guid>
		<description>Hi Yossi, the form tag has to have the runat=&quot;server&quot;. This causes ASP.NET to process the form element during generation of HTTP response and to replace the URL in the action attribute. Without this ASP.NET will not touch the form element.</description>
		<content:encoded><![CDATA[<p>Hi Yossi, the form tag has to have the runat=&#8221;server&#8221;. This causes ASP.NET to process the form element during generation of HTTP response and to replace the URL in the action attribute. Without this ASP.NET will not touch the form element.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

