Click here to Skip to main content
15,912,273 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi EveryOne,

This is first Time I am Posting here,
I have a complex aspx form in that I am using ajax tools.
It works for buttons inside update panels.
but one buttn which is also in update panels
ther it gives error.
-:sys.webforms.pagerequestmanagerservererrorexception 500
it is somthing related to scriptresource.axd
I searched on net i understood that it is a feature instead an error,
I tried:

enablevalidation=false; validationrequest=false;(in page tag)
enableCdn=false(in script manager)
Finally I am posting here as code project helped me lot.
Please Expecting Sollution.
(dont Check My Spelling)
Thanks In Advance
Posted
Comments
kishore sharma 23-Feb-12 8:46am    
Hello Evryone please if any one knows sollution of this problem..
please help
this is known issue. and we are not getting proper answer for this .

Check my previous answer
Time out - Guide[^]
 
Share this answer
 
Comments
kishore sharma 23-Feb-12 8:47am    
hello thatraja thanks for relpying .but i am unable to get that.
Monjurul Habib 26-Feb-12 6:17am    
5!
Use code inside updatepanel of every page.


<script type="text/javascript" language="javascript">
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
function EndRequestHandler(sender, args){
if (args.get_error() != undefined){
args.set_errorHandled(true);
}
}
</script>
 
Share this answer
 
v2
Comments
CHill60 9-Jul-13 16:41pm    
It's great that you want to help but this question was answered over a year ago, and the OP marked the solution as "Accepted"
kishore sharma 23-Jul-13 5:13am    
Thanks for showing interest for helping.......

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900