Ver Mensaje Individual
  #23 (permalink)  
Antiguo 15/02/2008, 00:51
zodgyy
 
Fecha de Ingreso: febrero-2008
Ubicación: Mexico, D.F.
Mensajes: 23
Antigüedad: 16 años, 2 meses
Puntos: 0
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; 15/02/2008 a las 00:59 Razón: informacion confidencial