We are using Oracle 11g as backend in our asp.net Web application.
In signup page when user clicks on creates a new account button. Since we are creating sample data for the user on db back end. Its taking nearly 90 secs to run the stored procedure and give response. Here after creating new app account we are redirecting to Thank you page using below code
Response.Redirect("../thankyou.aspx",false);
But its not redirecting to the Thankyou page
if i comment out create account method on button click the above code working and redirects to Thank you page.
I tried Server.Transfer("URL"), Response.Redirect("URL") but not working
I donot understand how to solve this issue. Please let me know how to solve this issue….
After a long time im able to find solution
I solved the issue with a property setting of ScriptManager
Below an example to set the timeout to 10 hours
Here i found it
http://forums.asp.net/post/1470167.aspx (Thank you so much JST)
I hope it helps somebody.
🙂