Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/05/2009, 01:31
Ixtleco
 
Fecha de Ingreso: noviembre-2003
Ubicación: Puente de ixtla
Mensajes: 773
Antigüedad: 21 años
Puntos: 0
Respuesta: ayuda con envio de formulario

y aqui pongo ajax2.js

Código:
function objetoAjax(){ 
    var xmlhttp=false; 
    try { 
        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
    } catch (e) { 
        try { 
           xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
        } catch (E) { 
            xmlhttp = false; 
          } 
    } 
 
    if (!xmlhttp && typeof XMLHttpRequest!='undefined') { 
        xmlhttp = new XMLHttpRequest(); 
    } 
    return xmlhttp; 
} 
 
function GuardarRegistro(){ 
  //donde se mostrará lo resultados 
  divResultado = document.getElementById('Resultado'); 
  divResultado.innerHTML= '<img src="wait.gif">'; 
  //valores de las cajas de texto 
  especialidad=document.forms.form1.especialidad.value; 
  course=document.forms.form1.course.value; 
  grupo=document.forms.form1.grupo.value;
  units2=document.forms.form1.units2.value;
  unidad1=document.forms.form1.unidad1.value;
  unidad2=document.forms.form1.unidad2.value;
  unidad3=document.forms.form1.unidad3.value;
  unidad4=document.forms.form1.unidad4.value;
  unidad5=document.forms.form1.unidad5.value;
  unidad5=document.forms.form1.unidad6.value;
  unidad7=document.forms.form1.unidad7.value;
  unidad8=document.forms.form1.unidad8.value;
  fecha_ent_plan=document.forms.form1.fecha_ent_plan.value;
  fecha_ent_instru=document.forms.form1.fecha_ent_instru.value;
  primer_seg=document.forms.form1.primer_seg.value;
  segundo_seg=document.forms.form1.segundo_seg.value;
  tercer_seg=document.forms.form1.tercer_seg.value;
 
  //instanciamos el objetoAjax 
 
  ajax=objetoAjax(); 
  //uso del medoto POST 
  //archivo que realizará la operacion 
  //registro.php 
  ajax.open("POST", "updatesegcurso.php",true); 
  ajax.onreadystatechange=function() { 
    if (ajax.readyState==4) { 
    //mostrar resultados en esta capa
    divResultado.innerHTML = ajax.responseText 
    //llamar a funcion para limpiar los inputs 
    LimpiarCampos(); 
    } 
  } 
  ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); 
  //enviando los valores 
  ajax.send("especialidad="+especialidad+"&course="+course+"&grupo="+grupo+"&units2="+units2+"&unidad1="+unidad1+"&unidad2="+unidad2+"&unidad3="+unidad3+"&unidad4="+unidad4+"&unidad5="+unidad5+"&unidad6="+unidad6+"&unidad7="+unidad7+"&unidad8="+unidad8+"&fecha_ent_plan="+fecha_ent_plan+"&fecha_ent_instru="+fecha_ent_instru+"&primer_seg="+primer_seg+"&segundo_seg)"+segundo_seg+"&tercer_seg="+tercer_seg)  
} 
 
function LimpiarCampos(){ 
  document.forms.registro.nombre.value=""; 
  document.forms.registro.ap_paterno.value=""; 
  document.forms.registro.ap_materno.value=""; 
  document.forms.registro.no_credencial.value=""; 
 
  document.forms.registro.nombre.focus(); 
}
se los agradesco de antemano
__________________
°º¤ø,¸¸,ø¤º°`°º¤ø,¸S@M°º¤ø,¸¸,ø¤º°`°º¤ø,¸.
Dios solo nos dio el 0 y el 1 y con solo eso hemos construido un universo