zxml - 500 internal server error
hi, i used iis 5.0 and asp. Always show same code: 5000 internal server error, why ????
my code:
function muestraSubCategorias2(IdCategoria) {
var aleatorio=Math.random();
var URLDestino="/Design2008/pintando/PintarComboSubCategorias.asp?Id_Categoria=" + escape(IdCategoria) + "&aleatorio=" + escape(aleatorio);
alert(URLDestino);
document.getElementById("combosubcategorias").inne rHTML='';
document.getElementById("combosubcategorias").inne rHTML = "<br><br><br><br><br><br><center><img src='/Design2008/images/34.gif' alt='cargando...' border='0'><br>Cargando información...</center>";
var oXmlHttp = zXmlHttp.createRequest();
oXmlHttp.open("get", URLDestino, true);
oXmlHttp.onreadystatechange = function () {
if (oXmlHttp.readyState == 4) {
if (oXmlHttp.status == 200) {
document.getElementById("combosubcategorias").inne rHTML = oXmlHttp.responseText;
} else {
document.getElementById("combosubcategorias").inne rHTML = oXmlHttp.statusText;
}
}
};
oXmlHttp.send(null);
}
thanks, is very urgent!!!
|