Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
On one aspx page in ASP.NET 3.5 C# application, when I select certain input parameters and click the Submit button, a back-end database query runs for about 6 minutes and updates the gridview with its results. This gridview is in UpdatePanel which has the Submit button as AsyncPostBackTrigger.
Since the default timeout is 90 seconds, I increased ScriptManager AsyncPostBackTimeout to 600 (10 minutes, just to be safe). When I run the app locally (localhost), the gridview is updated as expected. But when I access this app from a different client machine, it keeps running for 10 minutes and doesn't update the gridview at the end, even though the backend query has finished in 6 minutes.
http://localhost/appname/page.aspx (works)
http://another_ip/appname/page.aspx (same web server, different client machine, doesn't work).
Please help. Thanks.
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.