Mensaje de Error

11/11/2004 - 18:06 por Rookie | Informe spam
Escribi un script que genera un .pdf segun una consulta en asp, funciona bien
si son pocos campos, pero si genero muchos, me lanza este mensaje:

Error Type:
Active Server Pages, ASP 0113 (0x80004005)
The maximum amount of time for a script to execute was exceeded. You can
change this limit by specifying a new value for the property
Server.ScriptTimeout or by changing the value in the IIS administration tools.
/generate.asp

No entiendo bien que quiere decir,... que debo hacer?
 

Leer las respuestas

#1 Matias Iacono
11/11/2004 - 22:50 | Informe spam
El error se debe a que el tiempo que el codigo ASP toma para hacer toda la
tarea, es muy largo.

Como te describe el error, la sugerencia para darle una solucion es aumentar
el timeout de la pagina.

Para ello: Server.ScriptTimeout = TIEMPO

Donde, si no mal recuerdo, esta expresado en unidades de segundos. Aunque
realmente no recuerdo con exactitud.

De cualquier manera, un valor alto te garantizara que la transaccion tome el
tiempo necesario. De cualquier manera, es conveniente que revises tus
metodos, y ver donde los puedes optimizar.

Saludos,

Matias Iacono
Microsoft MVP
591 70859837
"Rookie" wrote in message
news:
Escribi un script que genera un .pdf segun una consulta en asp, funciona


bien
si son pocos campos, pero si genero muchos, me lanza este mensaje:

Error Type:
Active Server Pages, ASP 0113 (0x80004005)
The maximum amount of time for a script to execute was exceeded. You can
change this limit by specifying a new value for the property
Server.ScriptTimeout or by changing the value in the IIS administration


tools.
/generate.asp

No entiendo bien que quiere decir,... que debo hacer?

Preguntas similares