Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/03/2002, 17:05
Avatar de urjose
urjose
 
Fecha de Ingreso: diciembre-2001
Mensajes: 5.286
Antigüedad: 23 años, 4 meses
Puntos: 1
Re: ayuda en direcionar pagina asp

prueba algo asi


<%

On Error Resume Next

numeroError = Err.number
CualError = Err.description
If numeroError = 0 Then
  Response.Write "No hubo error"
Response.Redirect "paginanoerror.asp"
Else
  Response.Write "Hubo error"
Response.Redirect "paginasierror.asp"

End If
%>

saludos