<?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: Less code is fun: ASP.NET 3.5 SP1 removes need for control adapter when using URL rewriting</title>
	<atom:link href="http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/feed/" rel="self" type="application/rss+xml" />
	<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/</link>
	<description></description>
	<lastBuildDate>Sun, 05 Sep 2010 17:46:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: joaocarlosleme</title>
		<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/comment-page-1/#comment-14940</link>
		<dc:creator>joaocarlosleme</dc:creator>
		<pubDate>Thu, 18 Mar 2010 20:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/#comment-14940</guid>
		<description>Final solution for me: &lt;br&gt;Form.Action = &quot; &quot;;&lt;br&gt;No more # on URL</description>
		<content:encoded><![CDATA[<p>Final solution for me: <br />Form.Action = &#8221; &#8220;;<br />No more # on URL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joaocarlosleme</title>
		<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/comment-page-1/#comment-14939</link>
		<dc:creator>joaocarlosleme</dc:creator>
		<pubDate>Thu, 18 Mar 2010 20:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/#comment-14939</guid>
		<description>Suddenly &quot;Form&quot; started to show on intellisense (magic), but that was not the problem.  Request.Headers[&quot;X-Rewrite-Url&quot;] is empty (null). so... I GOT IT TO WORK USING:&lt;br&gt;&lt;br&gt;Form.Action = &quot;#&quot;;&lt;br&gt;&lt;br&gt;That worked for me. Small Problem: On postback WITHOUT AJAX it adds the # to the URL! Better idea? I tried Form.Action = &quot;&quot;; but it adds the default.aspx on it, maybe setting action=&quot;&quot; on aspx page might work but since I&#039;m using master pages I don&#039;t want to do that for all my pages. I also have a different solution &lt;b&gt;http://urlrewriter.net/&lt;/b&gt; on another site &lt;a href=&quot;http://www.advogadotrabalhistas.com.br rel=&quot;nofollow&quot;&gt;advogado trabalhista&lt;/a&gt; but it requires more files and code (I guess it was good before 3.5 came up.</description>
		<content:encoded><![CDATA[<p>Suddenly &#8220;Form&#8221; started to show on intellisense (magic), but that was not the problem.  Request.Headers["X-Rewrite-Url"] is empty (null). so&#8230; I GOT IT TO WORK USING:</p>
<p>Form.Action = &#8220;#&#8221;;</p>
<p>That worked for me. Small Problem: On postback WITHOUT AJAX it adds the # to the URL! Better idea? I tried Form.Action = &#8220;&#8221;; but it adds the default.aspx on it, maybe setting action=&#8221;" on aspx page might work but since I&#39;m using master pages I don&#39;t want to do that for all my pages. I also have a different solution <b><a href="http://urlrewriter.net/" rel="nofollow">http://urlrewriter.net/</a></b> on another site <a href="http://www.advogadotrabalhistas.com.br rel="nofollow">advogado trabalhista</a> but it requires more files and code (I guess it was good before 3.5 came up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Sheehan</title>
		<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/comment-page-1/#comment-14938</link>
		<dc:creator>John Sheehan</dc:creator>
		<pubDate>Thu, 18 Mar 2010 19:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/#comment-14938</guid>
		<description>Replace Form with the ID of your form (the one with the runat=server in your .aspx file). If your using a master page, you can&#039;t reference it directly from a content page codebehind. If you have a form with runat=server and no ID associated with it, just add an ID. If none of this works, post your problem with lots of sample code on &lt;a href=&quot;http://stackoverflow.com&quot; rel=&quot;nofollow&quot;&gt;stackoverflow.com&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Replace Form with the ID of your form (the one with the runat=server in your .aspx file). If your using a master page, you can&#39;t reference it directly from a content page codebehind. If you have a form with runat=server and no ID associated with it, just add an ID. If none of this works, post your problem with lots of sample code on <a href="http://stackoverflow.com" rel="nofollow">stackoverflow.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joaocarlosleme</title>
		<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/comment-page-1/#comment-14937</link>
		<dc:creator>joaocarlosleme</dc:creator>
		<pubDate>Thu, 18 Mar 2010 19:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/#comment-14937</guid>
		<description>Hi there! I tried the code above and it didn&#039;t work. I guess the problem is the &quot;Form.&quot; part, there ain&#039;t such a thing (do I need to add some directive &quot;using System...)? or is it the reference to the form id &quot;form1&quot;?&lt;br&gt;You can check at my site &lt;a href=&#039;http://www.segurosautomovel.com.br&#039; rel=&quot;nofollow&quot;&gt;seguro automovel&lt;/a&gt;, as it is not working (at this time) when it do the postback.</description>
		<content:encoded><![CDATA[<p>Hi there! I tried the code above and it didn&#39;t work. I guess the problem is the &#8220;Form.&#8221; part, there ain&#39;t such a thing (do I need to add some directive &#8220;using System&#8230;)? or is it the reference to the form id &#8220;form1&#8243;?<br />You can check at my site <a href=&#39;http://www.segurosautomovel.com.br&#39; rel="nofollow">seguro automovel</a>, as it is not working (at this time) when it do the postback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganhar Dinheiro</title>
		<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/comment-page-1/#comment-14887</link>
		<dc:creator>Ganhar Dinheiro</dc:creator>
		<pubDate>Fri, 22 May 2009 23:34:16 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/#comment-14887</guid>
		<description>Fine, thanks!</description>
		<content:encoded><![CDATA[<p>Fine, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ganhar Dinheiro</title>
		<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/comment-page-1/#comment-14686</link>
		<dc:creator>Ganhar Dinheiro</dc:creator>
		<pubDate>Fri, 22 May 2009 18:34:16 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/#comment-14686</guid>
		<description>Fine, thanks!</description>
		<content:encoded><![CDATA[<p>Fine, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CS</title>
		<link>http://john-sheehan.com/blog/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/comment-page-1/#comment-14529</link>
		<dc:creator>CS</dc:creator>
		<pubDate>Wed, 10 Sep 2008 21:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://john-sheehan.com/blog/index.php/less-code-is-fun-aspnet-35-sp1-removes-need-for-control-adapter-when-using-url-rewriting/#comment-14529</guid>
		<description>Fine, but it seems to have as side effect thta the scottGu controlAdapter no more works with 3.5: I just installed it and trace in the AddAttribute method which should replace &#039;action&#039; &#039;s vlue, and their I get no more &#039;action&#039;....some more massive modif behind this ???&lt;br&gt;&lt;br&gt;CS</description>
		<content:encoded><![CDATA[<p>Fine, but it seems to have as side effect thta the scottGu controlAdapter no more works with 3.5: I just installed it and trace in the AddAttribute method which should replace &#39;action&#39; &#39;s vlue, and their I get no more &#39;action&#39;&#8230;.some more massive modif behind this ???</p>
<p>CS</p>
]]></content:encoded>
	</item>
</channel>
</rss>
