
13/11/2008, 05:22
|
 | | | Fecha de Ingreso: agosto-2002 Ubicación: Hangar 18
Mensajes: 1.703
Antigüedad: 22 años, 8 meses Puntos: 16 | |
Respuesta: Problema Timeout Q: How to increase ASP timeout?
A: You can increase timeout time from the ASP script itself by using Server.ScriptTimeOut property:
Server.ScriptTimeout = NumSeconds
For example, if you want 100 seconds:
<% Server.ScriptTimeout = 100 %> |