Ver Mensaje Individual
Antiguo 14-feb-2008, 23:51   #23 (permalink)
zodgyy
zodgyy ha deshabilitado el karma
 
Fecha de Ingreso: febrero-2008
Mensajes: 4
Re: Error IIS 7 conexion a MS ACCESS

hola que tal.

Soy nuevo en windows vista y estoy haciendo unas asp´s en este pero me da el error de:

An error occurred on the server when processing the URL. Please contact the system administrator

he hecho lo comentado anteriormente de darle permisos para conexion anonima pero sigue sin funcionar que mas debo hacer???

este error me aparece por que estoy creando un popup

function Validar()
{
if(navigator.appName == "WebTV")
{
alert("Por el momento [" + navigator.appName + "] no es soportado, utiliza Internet Explorer")
}
if(navigator.appName == "Netscape")
{
alert("Por el momento [" + navigator.appName + "] no es soportado, utiliza Internet Explorer 6")
}

var x = navigator.appVersion
if (x.indexOf("6.",15) == -1)
{
alert("Debes Actualizar el Internet Explorer a la VERSION 6, para poder visualizar correctamente")
}
else
if(navigator.appName == "Microsoft Internet Explorer")
{
Popitup("/log.asp")
}

}

var newwindow = '';

function Popitup(url)
{
if (!newwindow.closed && newwindow.location)
{
newwindow.location.href = url;
}
else
{
newwindow=window.open(url,'Titulo','height=710,wid th=1013,screenX=0,screenY=0,left=0,top=0,resizable =yes');
if (!newwindow.opener) newwindow.opener = self;
}
if (window.focus) {newwindow.focus()}
return false;
}

help!!!

Última edición por zodgyy; 14-feb-2008 a las 23:59. Razón: informacion confidencial
zodgyy está desconectado   Responder Citando