i wanna fetch data aprox 800000 in excel through asp.net framework bt after its give time out exception
exception:
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
akash singhPosted Jul 29, 2015, 6:35 AM
akash singhPosted Jul 29, 2015, 6:35 AM
Upendra Pratap ShahiPosted Jul 29, 2015, 3:48 AM
1. A ConnectionString has a ConnectionTimeout property. It is a property which determines the maximum number of seconds your code will wait for a connection of the database to be open. You can set connection timeout in connection string section in web.config.
2. You can put AsyncPostBackTimeout="6000" in .aspx page
3. You can set timeout in sqlcommand where you are calling storeprocedure in .cs file.
Rajeesh MenothPosted Jul 29, 2015, 3:10 AM