Click here to Skip to main content
15,895,656 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am facing a strange issue. I have 7 -8 update panels in a asp.net page. Sometimes on click of a button in one of update panel throws 'PageRequestTimeOut' Exception as soon as we click on button and nothing happens after that.

Unable to trace the issue. Can anyone plz help what can be the reason.
Posted

1 solution

in your Master page where you have you Script Manager

Try below in PAGE Load

ScriptManager _scriptMan = ScriptManager.GetCurrent(this);      _scriptMan.AsyncPostBackTimeout = 36000; 


and check if problem still presist
 
Share this answer
 
Comments
Ashutosh.Singhh 7-Sep-12 3:57am    
Following are already part of my solution:

1) Config:
httpRuntime maxRequestLength="1024000" executionTimeout="999999"

2) Main Page:
Set the AsyncPostBackTimeout="360000"

Do I still need to add your suggested changes?

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