
22/06/2005, 09:32
|
 | | | Fecha de Ingreso: abril-2005
Mensajes: 1.051
Antigüedad: 20 años, 1 mes Puntos: 2 | |
Hola! Si, puedes hacer algo como:
on error resume next
oconn.execute("CONSULTA")
if oConn.Errors.Count > 0 then
if InStr(1, objDbConn.Errors(0).Description, "LA CADENA DE DB EN USO") > 0 then
Response.Redirect "dbMantenimiendo.asp"
end if
end if
Algo así podría servirte.
Suerte!! |