Estoy utilizando el siguiente codigo, y bueno probe en un Browser con firefox y funciona de lo mas bien; pero en IE nada que funciona.
Cita:
Gracias por la atencion prestada.var enProceso = false; // lo usamos para ver si hay un proceso activo
var http = getHTTPObject(); // Creamos el objeto XMLHttpRequest
function verificaUsuario() {
if (!enProceso && http) {
var valor = escape(document.getElementById("txtcorcon").value) ;
var url = "valida_mai.asp?emailUsuario="+ valor;
http.open("GET", url, true);
http.onreadystatechange = handleHttpResponse;
enProceso = true;
http.send(null);
}
}
function handleHttpResponse(){
if (http.readyState == 4){
if (http.status == 200){
if (http.responseText.indexOf('invalid') == -1) {
// Armamos un array, usando la coma para separar elementos
results = http.responseText.split(",");
document.getElementById("campoMensaje").innerHTML = results[0];
enProceso = false;
}
}
}
}
function getHTTPObject() {
var xmlhttp;
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
try {
xmlhttp = new XMLHttpRequest();
}catch(e){
xmlhttp = false;
}
}
return xmlhttp;
}
var http = getHTTPObject(); // Creamos el objeto XMLHttpRequest
function verificaUsuario() {
if (!enProceso && http) {
var valor = escape(document.getElementById("txtcorcon").value) ;
var url = "valida_mai.asp?emailUsuario="+ valor;
http.open("GET", url, true);
http.onreadystatechange = handleHttpResponse;
enProceso = true;
http.send(null);
}
}
function handleHttpResponse(){
if (http.readyState == 4){
if (http.status == 200){
if (http.responseText.indexOf('invalid') == -1) {
// Armamos un array, usando la coma para separar elementos
results = http.responseText.split(",");
document.getElementById("campoMensaje").innerHTML = results[0];
enProceso = false;
}
}
}
}
function getHTTPObject() {
var xmlhttp;
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
try {
xmlhttp = new XMLHttpRequest();
}catch(e){
xmlhttp = false;
}
}
return xmlhttp;
}
Atte
The_Pretorian