<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Eilon Lipton&amp;#39;s Blog - All Comments</title><link>http://weblogs.asp.net/leftslipper/default.aspx</link><description>Technical blog on Microsoft ASP.NET and ASP.NET AJAX.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6354126</link><pubDate>Thu, 03 Jul 2008 18:16:02 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6354126</guid><dc:creator>Chuck</dc:creator><description>&lt;p&gt;I was having this problem, but only under Firefox - and not on my dev computer. &lt;/p&gt;
&lt;p&gt;It turns out that ASP.NET was configured to store session state in cookies and Firefox was configured to not accept any cookies. Altering the session state management for ASP.NET in IIS did the trick.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6354126" width="1" height="1"&gt;</description></item><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6353247</link><pubDate>Thu, 03 Jul 2008 13:02:28 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6353247</guid><dc:creator>Venkat</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I have a ajax page, which is working fine if I open the page directly.&lt;/p&gt;
&lt;p&gt;Now I am referring this page URL in another applicaiton Iframe, to display this page.&lt;/p&gt;
&lt;p&gt;Click on Ajax button i am getting the error: sys.webforms.pagerequestmanagerparsererrorexception&lt;/p&gt;
&lt;p&gt;Any idea? why it is failing when i refer this page in another application web form (using Iframe)?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Venkat&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6353247" width="1" height="1"&gt;</description></item><item><title>Fixing Sys.WebForms.PageRequestManagerParserErrorException in AJAX &amp;laquo; Manoj Garg&amp;#8217;s Tech Blog</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6352454</link><pubDate>Thu, 03 Jul 2008 08:21:23 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6352454</guid><dc:creator>Fixing Sys.WebForms.PageRequestManagerParserErrorException in AJAX « Manoj Garg’s Tech Blog</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Fixing Sys.WebForms.PageRequestManagerParserErrorException in AJAX &amp;amp;laquo; Manoj Garg&amp;amp;#8217;s Tech Blog&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6352454" width="1" height="1"&gt;</description></item><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6352332</link><pubDate>Thu, 03 Jul 2008 06:37:42 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6352332</guid><dc:creator>Mark</dc:creator><description>&lt;p&gt;Here is a novel thought try writing software so people dont get this error you freaking idiot ! Wait that makes sense and nothing Microsoft does makes any sense! I cant wait until visual studio is dead a fate it so dearly deserves!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6352332" width="1" height="1"&gt;</description></item><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6336869</link><pubDate>Sun, 29 Jun 2008 21:52:45 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6336869</guid><dc:creator>Solrac</dc:creator><description>&lt;p&gt;One thing to try is to call your button events using javascript. Check out the example below.&lt;/p&gt;
&lt;p&gt;//Code Behind&lt;/p&gt;
&lt;p&gt;btnSubmit.Attributes.Add(&amp;quot;onclick&amp;quot;, &amp;quot;setSubmit();&amp;quot;);&lt;/p&gt;
&lt;p&gt;//javascript&lt;/p&gt;
&lt;p&gt; &amp;nbsp;function setSubmit() &amp;nbsp;{		 &amp;nbsp; &amp;nbsp; &amp;nbsp;_doPostBack(&amp;#39;btnSubmitClick&amp;#39;, &amp;#39;&amp;#39;);	&lt;/p&gt;
&lt;p&gt; }&lt;/p&gt;
&lt;p&gt;// Aspx page: bottom of page&lt;/p&gt;
&lt;p&gt;&amp;lt;input id=&amp;quot;btnSubmitClick&amp;quot; runat=&amp;quot;server&amp;quot; type=&amp;quot;button&amp;quot; style=&amp;quot;display:none&amp;quot; onserverclick=&amp;quot;btnSubmit_Click&amp;quot;/&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6336869" width="1" height="1"&gt;</description></item><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6324898</link><pubDate>Thu, 26 Jun 2008 23:41:06 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6324898</guid><dc:creator>Paul</dc:creator><description>&lt;p&gt;Hello Eilon,&lt;/p&gt;
&lt;p&gt;I have a page that uses a masterpage with the following:&lt;/p&gt;
&lt;p&gt;Masterpage has a silverlight usercontrol.&lt;/p&gt;
&lt;p&gt;The default page uses the masterpage and has an Accordion with 5 panes. &lt;/p&gt;
&lt;p&gt;Each pane with the exception of the last has a web user control.&lt;/p&gt;
&lt;p&gt;Each web user control has a repeater with a series of lintButton controls. &lt;/p&gt;
&lt;p&gt;The accordion is placed in an update panel. The update panel has a roundedcorner extender.&lt;/p&gt;
&lt;p&gt;Now, I call the server.Transfer(page, true) within a clicked event for the linkButton in these usercontrols. The destination page page_load event runs, but does not display and I get the Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it error.&lt;/p&gt;
&lt;p&gt;I have attempted using the EnableViewStateValidation = false and EnableViewStateMac = false settings to no avail.&lt;/p&gt;
&lt;p&gt;Please Help.&lt;/p&gt;
&lt;p&gt;Paul&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6324898" width="1" height="1"&gt;</description></item><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6314522</link><pubDate>Tue, 24 Jun 2008 11:48:12 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6314522</guid><dc:creator>Thomas</dc:creator><description>&lt;p&gt;What a wonderful solution.... HttpModules just don&amp;#39;t use them.....quite&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6314522" width="1" height="1"&gt;</description></item><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6294233</link><pubDate>Thu, 19 Jun 2008 07:07:31 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6294233</guid><dc:creator>Deb</dc:creator><description>&lt;p&gt;Just use &amp;nbsp;PostBackUrl prop &lt;/p&gt;
&lt;p&gt;example :&lt;/p&gt;
&lt;p&gt;--------&lt;/p&gt;
&lt;p&gt;&amp;lt;asp:Button ID=&amp;quot;btnAddNewUser&amp;quot; Text=&amp;quot;Add New User&amp;quot; OnClick=&amp;quot;btnAddNewUser_Click&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CssClass=&amp;quot;FormButton&amp;quot; runat=&amp;quot;server&amp;quot; PostBackUrl=&amp;quot;~/Administration/UserAdd.aspx&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;Enjoy!!&lt;/p&gt;
&lt;p&gt;Deb&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6294233" width="1" height="1"&gt;</description></item><item><title>re: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it</title><link>http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx#6293071</link><pubDate>Thu, 19 Jun 2008 00:40:21 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6293071</guid><dc:creator>Juan Pablo</dc:creator><description>&lt;p&gt;We faced the same problem more than once; this occurs because the AJAX sends the length of the response, but for some reason the response has another length, so it fails. We tried with the multiple solutions in many sites (a new session, an asp:label before, ...), but the only solution is to check the real response of your call. For example, if you have a grid inside the updatepanel and refresh the UP but do not do a databind() in the grid, the expected response will be shorter than the real one (the same for dropdowns, on-the-fly labels, etc.). Check the exact response of your AJAX call. This is the only solution (for IE use DebugBear which shows the result of the AJAX response; in this case we can saw that some asp controls were not filled and the ajax response fails).&lt;/p&gt;
&lt;p&gt;Greetings and sorry for my poor english! =)&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6293071" width="1" height="1"&gt;</description></item><item><title>What you need to know about ASP.NET Databinder Eval and Bind</title><link>http://weblogs.asp.net/leftslipper/archive/2007/06/29/how-asp-net-databinding-deals-with-eval-and-bind-statements.aspx#6290424</link><pubDate>Wed, 18 Jun 2008 12:04:58 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6290424</guid><dc:creator>Adam Pedley</dc:creator><description>&lt;p&gt;What you need to know about ASP.NET Databinder Eval and Bind&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6290424" width="1" height="1"&gt;</description></item></channel></rss>