Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/10/2009, 08:00
Avatar de Laika
Laika
 
Fecha de Ingreso: octubre-2001
Mensajes: 1.376
Antigüedad: 23 años, 2 meses
Puntos: 0
Respuesta: Adaptar a funcion

Este es el formulario. Que sean campos obligatorios el nombre,apellidos,telefono y el email.

Código:
<form action="tratar-enviar-contactar.aspx" method="post">
    <table width="550" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td class="texto-verde-centrado">FORMULARIO DE CONTACTO</td>
      </tr>
    </table>
    <p>&nbsp; </p>
    <table width="550" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td width="82" height="21">(*) Nombre:</td>
        <td width="182" height="30"><input type="text" name="nombre" id="nombre" /></td>
        <td width="101">(*) Apellidos:</td>
        <td width="185"><input type="text" name="apellidos" id="apellidos" /></td>
      </tr>
      <tr>
        <td height="21">Direcci&oacute;n:</td>
        <td height="30"><input type="text" name="direccion" id="direccion" /></td>
        <td>CP:</td>
        <td><input type="text" name="cp" id="cp" /></td>
      </tr>
      <tr>
        <td height="21">Poblaci&oacute;n:</td>
        <td height="30"><input type="text" name="poblacion" id="poblacion" /></td>
        <td>Provincia:</td>
        <td><input type="text" name="provincia" id="provincia" /></td>
      </tr>
      <tr>
        <td height="21">Pa&iacute;s:</td>
        <td height="30"><input type="text" name="pais" id="pais" /></td>
        <td>(*) Tel&eacute;fono:</td>
        <td><input type="text" name="telefono" id="telefono" /></td>
      </tr>
      <tr>
        <td> (*) Email:</td>
        <td height="30"><input type="text" name="email" id="email" /></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
    </table>
    <table width="550" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td><p>Comentarios:</p>
          <p>
            <textarea name="comentarios" id="comentarios" cols="58" rows="5"></textarea>
          </p></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td align="center"><input name="button" type="submit" id="button" onclick="MM_validateForm('nombre','','R','apellidos','','R','telefono','','R','email','','RisEmail');return document.MM_returnValue" value="Enviar" /></td>
      </tr>

    </table>
    </form>