<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.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>ASP.NET AJAX UI</title><link>http://forums.asp.net/1008.aspx</link><description>Here you can discuss UI-related issues with AJAX such as controls and client-side functionality including Silverlight controls for ASP.NET</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/3531176.aspx</link><pubDate>Wed, 25 Nov 2009 01:35:32 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3531176</guid><dc:creator>fabiotib</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3531176.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=3531176</wfw:commentRss><description>&lt;p&gt;Hi,&lt;br /&gt;The error occurs because the control that executed the Server.Transfer () method is declared within one or more UpdatePanel as AsyncPostBackTrigger. So, removing this condition the problem stops occurring. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/3485086.aspx</link><pubDate>Fri, 30 Oct 2009 07:48:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3485086</guid><dc:creator>sandeep.cec</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3485086.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=3485086</wfw:commentRss><description>&lt;p&gt;I am firing master page&amp;nbsp; button click event using jquery .Button is In Update Panel .Locally my code is running properly But at live server It returns 500 status code error.Complete error is given below.&lt;/p&gt;
&lt;p&gt;&amp;lt;asp:UpdatePanel ID=&amp;quot;UpPhoto&amp;quot; runat=&amp;quot;server&amp;quot; UpdateMode=&amp;quot;Conditional&amp;quot; &amp;gt; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;ContentTemplate&amp;gt; my button is here&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/ContentTemplate&amp;gt; &amp;lt;/asp:UpdatePanel&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;i have used follows methods to solve issue but of no use&lt;/p&gt;
&lt;p&gt;1. validateRequest=false, EnableEventValidation=&amp;quot;false&amp;quot;,&lt;/p&gt;
&lt;p&gt;full error message:&lt;/p&gt;
&lt;p&gt;[Exception... &amp;quot;&amp;#39;Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500&amp;#39; when calling method: [nsIDOMEventListener::handleEvent]&amp;quot;&amp;nbsp; nsresult: &amp;quot;0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT)&amp;quot;&amp;nbsp; location: &amp;quot;JS frame :: chrome://firebug/content/spy.js :: onHTTPSpyReadyStateChange :: line 497&amp;quot;&amp;nbsp; data: no]&lt;br /&gt;&lt;/p&gt;</description></item><item><title>SOLVED!! "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/3313703.aspx</link><pubDate>Mon, 27 Jul 2009 02:47:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3313703</guid><dc:creator>Terry_n_Harris</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3313703.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=3313703</wfw:commentRss><description>&lt;p&gt;I HAVE SOLVED IT!!!&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I had this issue for a while i couldnt download anything from my webap as i kept getting this error, then i came across this brillian tpiece of code and everything works fine&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;code&amp;gt;&lt;/p&gt;&lt;pre name="code"&gt;&lt;pre name="code"&gt;private void exportDataTableToCsv(DataTable formattedDataTable, string filename)&lt;br /&gt;{&lt;br /&gt;   DataTable toExcel = formattedDataTable.Copy();&lt;br /&gt;   HttpContext context = HttpContext.Current;&lt;br /&gt;   context.Response.Clear();&lt;br /&gt;&lt;br /&gt;   foreach (DataColumn column in toExcel.Columns)&lt;br /&gt;   {&lt;br /&gt;      context.Response.Write(column.ColumnName + &amp;quot;,&amp;quot;);&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;   context.Response.Write(Environment.NewLine);&lt;br /&gt;   foreach (DataRow row in toExcel.Rows)&lt;br /&gt;   {&lt;br /&gt;      for (int i = 0; i &amp;lt; toExcel.Columns.Count; i++)&lt;br /&gt;      {&lt;br /&gt;         context.Response.Write(row[i].ToString().Replace(&amp;quot;,&amp;quot;, string.Empty) + &amp;quot;,&amp;quot;);&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;      context.Response.Write(Environment.NewLine);&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;   context.Response.ContentType = &amp;quot;text/csv&amp;quot;;&lt;br /&gt;   context.Response.AppendHeader(&amp;quot;Content-Disposition&amp;quot;, &amp;quot;attachment; filename=&amp;quot; + filename + &amp;quot;.csv&amp;quot;);&lt;br /&gt;   context.Response.End();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&amp;lt;asp:UpdatePanel ID=&amp;quot;UpdatePanel1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;ContentTemplate&amp;gt;&lt;br /&gt;&amp;lt;asp:LinkButton ID=&amp;quot;lbToExcel&amp;quot; runat=&amp;quot;server&amp;quot; OnClick=&amp;quot;exportDataTableToCsv&amp;quot;&amp;gt;Export To Excel&amp;lt;/asp:LinkButton&amp;gt;&lt;br /&gt;&amp;lt;/ContentTemplate&amp;gt;&lt;br /&gt;&amp;lt;Triggers&amp;gt;&lt;br /&gt;&amp;lt;asp:PostBackTrigger ControlID=&amp;quot;lbToExcel&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/asp:PostBackTrigger&amp;gt;&lt;br /&gt;&amp;lt;/Triggers&amp;gt;&lt;br /&gt;&amp;lt;/asp:UpdatePanel&amp;gt;&lt;/pre&gt;
&lt;br /&gt;&amp;lt;/code&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;pre name="code"&gt;&lt;pre name="code"&gt;Bacically i need to put my button in an update panel and add a postback trigger for that button, now everything works fine and no errrs&lt;br /&gt;ALAS! i cant claim that i figured this out myself :( but here is the link that i used http://www.victorchen.info/export-datatable-to-csv-file-download-in-c/&lt;br /&gt;&lt;br /&gt;(i also havent figued out how to use the insert code feature correctly)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/3060331.aspx</link><pubDate>Fri, 03 Apr 2009 09:16:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3060331</guid><dc:creator>srankamal</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3060331.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=3060331</wfw:commentRss><description>&lt;p&gt; hello all i am also facing same error ;and i didt use response.write() in my whole application;please suggest me something to avoid this error
error sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2921236.aspx</link><pubDate>Fri, 06 Feb 2009 12:10:25 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2921236</guid><dc:creator>raviraj_shelke</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2921236.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2921236</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;I have the same problem.&lt;/p&gt;&lt;p&gt;When session expires and page get redirected to login page , them&amp;nbsp; PageRequestManager/script manager can not parse the responce which contain &amp;lt;html&amp;gt; tag.&lt;/p&gt;&lt;p&gt;I can not remove burron outside of the update panel as it will always post back the page and then their is no use of update panel.&lt;/p&gt;&lt;p&gt;Is any one can help or can&amp;nbsp; PageRequestManager can be updated to handel such issues so thet it will simply redirect the browser to new page.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2876571.aspx</link><pubDate>Mon, 19 Jan 2009 12:42:44 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2876571</guid><dc:creator>CTGuy67</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2876571.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2876571</wfw:commentRss><description>&lt;p&gt;Nope.&amp;nbsp; I decide to just roll over and play dead.&amp;nbsp; Any server that Ajax doesn&amp;#39;t work right, I just turn it off.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Someday somewhere someone smarter than I will solve this.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Good luck...sorry I couldn&amp;#39;t be more help.&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2873298.aspx</link><pubDate>Sat, 17 Jan 2009 17:35:53 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2873298</guid><dc:creator>ricaforrica</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2873298.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2873298</wfw:commentRss><description>&lt;p&gt;Hello Larryw!&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Thanks for your tip! I added the javascript you suggested and the error went away, all started working as expected...&lt;/p&gt;&lt;p&gt;Unfortunately, only if the site is hosted in my development server, if i publish it to the production server&amp;nbsp; I still get these errors (in a random frequency) :(&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I suppose it has nothing to do with the client-side or with the database, so I suppose it may be related to IIS. Any configuration I could change in IIS 7 so that it works also in my development machine?&lt;/p&gt;&lt;p&gt;Thanks in advance for your help!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Ricardo. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2873259.aspx</link><pubDate>Sat, 17 Jan 2009 17:00:12 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2873259</guid><dc:creator>ricaforrica</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2873259.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2873259</wfw:commentRss><description>&lt;p&gt;Hello CTGuy67!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Have you ever solved your problem concerning this Sys.WebForms.PageRequestManagerParserErrorException?&lt;/p&gt;&lt;p&gt;I have the exact same symptoms: all works well in my development server, but when I publish my web site to the production server, I get this error in a specific page (only in firefox).&lt;/p&gt;&lt;p&gt;It happens either in publish mode or copying all the code, and the strangest thing is that if use firefox inside the server I don&amp;#39;t get any error!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I thank you in advance for your help. &lt;/p&gt;&lt;p&gt;Best regards,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Ricardo. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2679926.aspx</link><pubDate>Mon, 13 Oct 2008 18:39:30 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2679926</guid><dc:creator>larryw</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2679926.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2679926</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Long story short, I was receiving this error after modifiying our site for URL rewriting. Adding the following JavaScript solved it for me:&lt;/p&gt;&lt;p&gt;Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);&lt;/p&gt;&lt;p&gt;function EndRequestHandler(sender, args)&lt;br /&gt;{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (args.get_error() != undefined)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; args.set_errorHandled(true);location.reload(true);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;} &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;You can find out more about this error on the following link:&lt;/p&gt;&lt;p&gt;&lt;a href="http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx?CommentPosted=true#commentmessage%20A"&gt;http://weblogs.asp.net/leftslipper/archive/2007/02/26/sys-webforms-pagerequestmanagerparsererrorexception-what-it-is-and-how-to-avoid-it.aspx?CommentPosted=true#commentmessage%20A&lt;/a&gt; &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2498818.aspx</link><pubDate>Fri, 18 Jul 2008 12:12:38 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2498818</guid><dc:creator>tehremo</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2498818.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2498818</wfw:commentRss><description>&lt;p&gt;For those who experience this with an expired session:&amp;nbsp; &lt;a href="http://forums.asp.net/t/1291762.aspx"&gt;http://forums.asp.net/t/1291762.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I just went through this and this worked for me.&amp;nbsp; Add the following to your web.config file:&lt;/p&gt;
&lt;p&gt;&amp;lt;httpHandlers&amp;gt; &lt;br /&gt;&amp;lt;add verb=&amp;quot;GET&amp;quot; path=&amp;quot;ScriptResource.axd&amp;quot; type=&amp;quot;System.Web.Handlers.ScriptResourceHandler&amp;quot; validate=&amp;quot;false&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/httpHandlers&amp;gt; &lt;br /&gt;&amp;lt;httpModules&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;add name=&amp;quot;ScriptModule&amp;quot; type=&amp;quot;System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&amp;quot;/&amp;gt; &lt;br /&gt;&amp;lt;/httpModules&amp;gt;&lt;/p&gt;
&lt;p&gt;Once I added this, my redirect on expired sessions started working again.&amp;nbsp; I could still see the js error happening before the redirect, but for me this error is currently only happening when the session expires.&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2498202.aspx</link><pubDate>Fri, 18 Jul 2008 07:49:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2498202</guid><dc:creator>Sans</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2498202.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2498202</wfw:commentRss><description>&lt;p&gt;This might help: http://ranafaisal.wordpress.com/2008/06/02/responseredirect-in-aspnet-ajax/&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I got the same error while using an update panel on an ajax-enabled website. I didn&amp;#39;t have login or any of the causes enumerated in the error message.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2383865.aspx</link><pubDate>Tue, 27 May 2008 19:34:01 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2383865</guid><dc:creator>Reddy4All</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2383865.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2383865</wfw:commentRss><description>&lt;p&gt;Hey Thanks guys...&lt;/p&gt;&lt;p&gt;I was facing the same issue... But After setting &lt;i&gt;&lt;b&gt;enablePartialRendering=&amp;quot;false&amp;quot;&lt;/b&gt;&lt;/i&gt;&amp;nbsp; solve my problem. &lt;/p&gt;&lt;p&gt;Thanks a lot&amp;nbsp; for you guys...&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2382255.aspx</link><pubDate>Tue, 27 May 2008 08:42:58 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2382255</guid><dc:creator>RajkumarGS</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2382255.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2382255</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;Add this code after closing ContentTemplate.&lt;/div&gt;
&lt;div&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;lt;/&lt;/font&gt;&lt;font color="#800000" size="2"&gt;ContentTemplate&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;gt;&lt;/p&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;lt;&lt;/font&gt;&lt;font color="#800000" size="2"&gt;Triggers&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;gt;&lt;/p&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;lt;&lt;/font&gt;&lt;font color="#800000" size="2"&gt;asp&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;:&lt;/font&gt;&lt;font color="#800000" size="2"&gt;PostBackTrigger&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font color="#ff0000" size="2"&gt;ControlID&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;=&amp;quot;MessageBox1&amp;quot;&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;/&amp;gt;&lt;/p&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;lt;/&lt;/font&gt;&lt;font color="#800000" size="2"&gt;Triggers&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;gt;&lt;/p&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;lt;/&lt;/font&gt;&lt;font color="#800000" size="2"&gt;asp&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;:&lt;/font&gt;&lt;font color="#800000" size="2"&gt;UpdatePanel&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color="#0000ff" size="2"&gt;ControlID should be the button or any control you click.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color="#0000ff" size="2"&gt;&amp;nbsp;&lt;/p&gt;&lt;/font&gt;&lt;/div&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2344237.aspx</link><pubDate>Wed, 07 May 2008 22:18:36 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2344237</guid><dc:creator>BhaveshPatel</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2344237.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2344237</wfw:commentRss><description>&lt;font color="#ff0000" size="2"&gt;
&lt;p&gt;EnableEventValidation&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;=&amp;quot;false&amp;quot; solved my problem.&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Re: How to resolve "Sys.WebForms.PageRequestManagerParserErrorException" issue</title><link>http://forums.asp.net/thread/2173429.aspx</link><pubDate>Thu, 14 Feb 2008 16:03:19 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2173429</guid><dc:creator>CTGuy67</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2173429.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=2173429</wfw:commentRss><description>&lt;p&gt;This is ridiculous.&amp;nbsp; I&amp;#39;m having the same issue everyone else is.&amp;nbsp; Works fine in my development environment, but not on my live server, &amp;nbsp;that is unless I run the web app from a browser on the server then everything works fine.&amp;nbsp;&amp;nbsp;I&amp;#39;m not using any kind of authentication or role management and it&amp;#39;s not a web farm.&amp;nbsp; Just using Ajax with &lt;font color="#ff0000"&gt;EnablePartialRendering&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;=&amp;quot;true&amp;quot;.&amp;nbsp; Which like the above poster said is the primary reason to use Ajax.&amp;nbsp; Here&amp;#39;s another wrinkle, this doesn&amp;#39;t happen with all the Ajax enabled web apps on the live server...just a select few.&amp;nbsp; &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;I am at my wits end with this!&lt;/p&gt;</description></item></channel></rss>