where can I set timeout?

  • Thread starter Thread starter Braduceanu Nicolae
  • Start date Start date
B

Braduceanu Nicolae

I use web services with SQL2000 database.
The problem is: if the query on SQL is taking more than 2 minutes, the
browser show a big red message "Application Server Unavailable".
Is that a timeout of client-IIS or .NET Framework-SQL communication? where
can I set it?

Nick
 
Try someone of those or combination of them:

1) Change the session timeout in ASP.Net
You can do this in the configuration file:

<sessionState .... timeout="20"/>

2) Change the timeout in IIS.
3) Increase the timeout on the SQL server. Use Enterprise
Manager to do that.

/Fredrik Normén NSQUARED
 
Hi,

You can find page timeouts in web.config (they can also be set in
machine.config).

HTH,
 
Back
Top