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

one of my website is hosted on Godaddy Windows Hosting Shared Server Economy Plan,
Website Link http://partipa.com/[^]

In this website we have asp.net form in which client can register online.

this web form contains 5 step input data. in each step user enter their information regarding their firm etc. the minimum time to enter data in online data sheet is around 5 Min.

link for entering data for client.

http://partipa.com/Not_Profit_fpc.aspx[^]

Problem : if user take more than 10Min to enter data. it gives Request time out in IE Browser only.

Please help me out to solve this problem.

I have changed in web.config
HTML
<httpruntime maxrequestlength="2097151" executiontimeout="12000" usefullyqualifiedredirecturl="false" minfreethreads="8" minlocalrequestfreethreads="4" apprequestqueuelimit="100"></httpruntime>


and also in page_load
C#
protected void Page_Load(object sender, EventArgs e)
    {
Server.ScriptTimeout = 3000;}


but I am not able to solve this problem.
Posted
Updated 29-Aug-11 18:05pm
v2
Comments
GenJerDan 29-Aug-11 11:16am    
Talking too long in filling out a page shouldn't cause a Request timeout. If anything, it would be a Session timeout, which has a default of 20 minutes (unless the hosting provider changes it). The Request timeout is probably from whatever you're returning to the user after they've submitted the page, or while attempting to insert the data into a database (assuming that's where it's going). Any error codes at all being returned?

1 solution

I think there is no problem in your settings. But anyway you need these links to trace the issues.

How to troubleshoot HttpException Request timed out (ASP.NET 2.0)[^]
Troubleshooting Failed Requests Using Tracing in IIS 7[^]
Page Timeout in ASP.NET[^]
 
Share this answer
 

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