Ver Mensaje Individual
  #13 (permalink)  
Antiguo 01/09/2011, 10:55
Avatar de Monimo
Monimo
 
Fecha de Ingreso: noviembre-2007
Ubicación: Mexico Df
Mensajes: 742
Antigüedad: 17 años
Puntos: 69
Respuesta: problema al validar

Este funciona tal cual:

Código Javascript:
Ver original
  1. <DOCTYPE html PUBLIC "- / / W3C / / DTD XHTML 1.0 Strict / / EN" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. *
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
  4. *
  5. <head>
  6. *
  7. <title>Crear Usuario</title>
  8. *
  9. </head>
  10. *
  11. <meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
  12. *
  13. <link type="text/css" rel="stylesheet" href="estilo.css">
  14. *
  15. <script language="javaScript">
  16. *
  17. function *Validar(form1){
  18.    
  19.     var nm=document.getElementById('nm');
  20.     var pwd=document.getElementById('pwd');
  21.     var Ar=document.getElementById('ar');
  22.     var Cr=document.getElementById('cr');
  23.     var sigo=false;
  24.    
  25.    
  26. * * if(nm.value =="")
  27. * * {
  28. * * alert("Ingrese Nombre ");
  29. sigo=false;
  30. * * }
  31. * *
  32. * *
  33.         if (pwd.value =="")
  34.     * * {
  35.     * * alert("Ingrese Contraseña");
  36.     sigo=false;
  37.     * * }
  38. *
  39. * * if(Ar.value =="")
  40. * * {
  41. * * alert("Ingrese Area");
  42. sigo=false;
  43. * * }
  44. *
  45. * * if(Cr.value=="")
  46. * * {
  47. * * alert("Ingrese Cargo");
  48. sigo=false;
  49. * * }
  50.  
  51. if(nm.value !="" & pwd.value != "" & ar.value != "" & cr.value !="")
  52. {
  53.     return true;
  54. }else{
  55.     return false;
  56. }
  57.  *
  58.  
  59. }
  60.  
  61.  
  62. </script>
  63. *
  64. <body>
  65. *
  66. <br>
  67. *
  68. <center><h2>INGRESO DE USUARIOS</h2></center>
  69. *
  70. <h3><center>Aqui se permite agregar usuarios, cuando sea necesario, todos los campos con un <font color="red"><b>*</b></font> son obligatorios</center></h3>
  71. *
  72. <center><form id="form1"  action= "InsertaUsuario.php" method="post" onSubmit="return Validar('form1')">
  73. *
  74. <?php if (isset($sindatos)) echo $sindatos; ?>
  75. *
  76. <center><br><table border ='2'>
  77. *
  78. <tr>
  79. *
  80. <td>
  81. *
  82. <center><IMG SRC="imagenes/LOGO.jpg" WIDTH=120 HEIGHT=100></center>
  83. *
  84. <h3><center>USUARIO A INGRESAR</center></h3>
  85. *
  86. </td>
  87. *
  88. <td><br>
  89. *
  90. <center><h4><font color="red"><b>*</b></font> Nombre: <input type="text" id="nm" name="Nombre" size="25" value="<?php if(isset($Nombre)) echo $Nombre ?>" /></h4></center>
  91. *
  92. <center><h4><font color="red"><b>*</b></font> Password: <input id="pwd" type="password" name="Contrasena" size="25" /></center></h4>
  93. *
  94. <center><h4><font color="red"><b>*</b></font> Area: <input id="ar" type="text" name="Area" size="30" value="<?php if(isset($Area)) echo $Area ?>" /></center></h4>
  95. *
  96. <center><h4><font color="red"><b>*</b></font> Cargo: <input type="text" id="cr" name="Cargo" size="29" value="<?php if(isset($Cargo)) echo $Cargo ?>" /></center></h4>
  97. *
  98. <p align="center"><input type="submit" value="AGREGAR" *name="Agregar"><br>
  99. *
  100. </td>
  101. *
  102. </tr>
  103. *
  104. <div align="center"><a href="MenuAdmi.php"><h3> Devlover </h3></a></div>
  105. *
  106. </table>
  107. *
  108. </div>
  109. *
  110. </form></center>
  111. *
  112. </body>
  113. *
  114. </html>
__________________
La verdad es que lo que no quisiera dejar de hacer nunca (a parte de comer) es programar

Última edición por Monimo; 05/09/2011 a las 09:31