I'm getting the same error. My page has 1 gridview, label and a bunch of images inside the update panel. The label displays the current DateTime. It is a dashboard application that automatically does a partial postback every 5 minutes. What consistently
happens is that everytime the panel updates after midnight, this error message appears. Now I have tried all the suggestions in this post, but still I get this error. Any other ideas?
I have been getting this error, gridview inside an updatepanel, on a timer - consistently gets the error within a few minutes. The 3 solutions above did not work - I appear to have worked around it by handling the error on the client side with this javascript:
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args)
{
if (args.get_error() != undefined)
{
var errorMessage;
if (args.get_response().get_statusCode() == '12029')
{
args.set_errorHandled(true);
}
else
{
// not my error so let the default behavior happen }
}
}
The error is harmless to me so all want to do is not bother the user with an alert - this does it, till they fix the problem wherever it is.
Diadiora
~~~~~~~~~~~~
Dont forget to click "Mark as Answer" on the post that helped you.
This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.
Diadiora
~~~~~~~~~~~~
Dont forget to click "Mark as Answer" on the post that helped you.
This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.
i have one aspx/ajax application , and i posted this application on server, Its working fine in local, but on server i am getting few problems, please let me know the solution of this problem.
1. For example when i am in webform4.aspx, (it has 30 controls - so its long webpage), than when i have put the scroll down , it is moving up, Even number of times when i try to scroll down, automatically its moving up, i am unable to enter data because
of this error.
page flickring....
2. Second time i am getting error as follows when page as idle in 20 to 30 secns.,
'Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 12029'.
i am using ajax/aspx
anyone has the solution please reverback or mail me to
vrsanaidu@gmail.com.., its very urgent to me.
I still cant get it working and it seems to be more prominent on pages where there is gridview involved and sometimes the error is unexplainable. It is just inconsistant and i dont think there is a solution to this problem.
I just wish there was someone out there who could actually fix this problem. Does it not maybe have something do this windows 2003.
jminond
Contributor
2898 Points
608 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Feb 27, 2007 07:30 PM|LINK
Page EventValidation=false fixed my loginview inside an update panel, so try that suggestion from this thread, it should work.
We had a number of different cases making this error, and EventValidation was the primary fix, nothing to do with rolemanager sutf.f
http://www.Jonavi.com
http://www.jonavi.com/Default.aspx?pageID=21
http://RainbowBeta.com
http://community.rainbowportal.net/blogs/jonathans_rainbow_blog/default.aspx
http://dotnetslackers.com/community/blogs/jminond/default.aspx
samdc
Member
2 Points
2 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Feb 27, 2007 09:01 PM|LINK
Hi,
I'm getting the same error. My page has 1 gridview, label and a bunch of images inside the update panel. The label displays the current DateTime. It is a dashboard application that automatically does a partial postback every 5 minutes. What consistently happens is that everytime the panel updates after midnight, this error message appears. Now I have tried all the suggestions in this post, but still I get this error. Any other ideas?
Regards,
Sam
btolly
Member
2 Points
1 Post
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Mar 02, 2007 07:18 PM|LINK
I have been getting this error, gridview inside an updatepanel, on a timer - consistently gets the error within a few minutes. The 3 solutions above did not work - I appear to have worked around it by handling the error on the client side with this javascript:
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args)
{
if (args.get_error() != undefined)
{
var errorMessage;
if (args.get_response().get_statusCode() == '12029')
{
args.set_errorHandled(true);
}
else
{
// not my error so let the default behavior happen }
}
}
The error is harmless to me so all want to do is not bother the user with an alert - this does it, till they fix the problem wherever it is.
ASPninja
Member
4 Points
7 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Mar 22, 2007 03:44 PM|LINK
You may want to try setting ValidateRequest="false" in the Page declaration. It worked for me.
- Ryan
diadiora
Member
350 Points
83 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Apr 11, 2007 01:20 PM|LINK
ok, try another simplest way:
METHODE 4
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="false"/>
Diadiora
~~~~~~~~~~~~
Dont forget to click "Mark as Answer" on the post that helped you.
This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.
diadiora
Member
350 Points
83 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Apr 11, 2007 01:23 PM|LINK
ok, try another simplest way:
METHODE 4
Diadiora
~~~~~~~~~~~~
Dont forget to click "Mark as Answer" on the post that helped you.
This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.
Rasetti
Participant
1216 Points
286 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Apr 11, 2007 08:11 PM|LINK
MCTS
Please remember to click "Mark as Answer" on this post if it helped you.
vrsanaidu
Member
421 Points
194 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Jun 08, 2007 11:06 AM|LINK
hi all,
i have one aspx/ajax application , and i posted this application on server, Its working fine in local, but on server i am getting few problems, please let me know the solution of this problem.
1. For example when i am in webform4.aspx, (it has 30 controls - so its long webpage), than when i have put the scroll down , it is moving up, Even number of times when i try to scroll down, automatically its moving up, i am unable to enter data because of this error.
page flickring....
2. Second time i am getting error as follows when page as idle in 20 to 30 secns.,
'Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 12029'.
i am using ajax/aspx
anyone has the solution please reverback or mail me to vrsanaidu@gmail.com.., its very urgent to me.
thnx .
Naidu
Naidu.
http://www.questkt.com
peetie12
Member
18 Points
11 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Jun 26, 2007 02:29 PM|LINK
Check your firewall settings too! Reference:
http://blogs.telerik.com/blogs/twisted_asp_net/archive/2007/06/26/2528.aspx
Firewall
Eugenevster
Member
4 Points
2 Posts
Re: Sys.Webforms.PageRequestManagerServerErrorException actual cause (related RoleManager issue)
Aug 08, 2007 02:07 PM|LINK
I still cant get it working and it seems to be more prominent on pages where there is gridview involved and sometimes the error is unexplainable. It is just inconsistant and i dont think there is a solution to this problem.
I just wish there was someone out there who could actually fix this problem. Does it not maybe have something do this windows 2003.