Codigo incompleto...
Publicado por DEVILSITO (140 intervenciones) el 15/04/2010 20:05:39
El siguiente código es la tipica pantalla que recolecta los datos de usuario para enviar mail:
<html>
<head>
<title>Enter E-mail Data</title>
</head>
<body>
<form name="theform" method="post" action="send.php">
<table>
<td>Correo:</td>
<td><input type="text" name="from" size="50"></td>
</tr>
<tr>
<td>Asunto:</td>
<td><input type="text" name="subject" size="50"></td>
</tr>
<tr>
<td valign="top">Mensaje:</td>
<td>
<textarea cols="60" rows="10" name="message"
>Escriba aqui su mensaje</textarea>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="Envia">
<input type="reset" value="Regresa">
</td>
</tr>
</table>
</form>
</body>
</html
El Botón "submit" me deriva a la accion de enviar el mail, y todo OK
Como hacer para que el botón "Regresa" efectivamente Regrese a una pantalla anterior
<html>
<head>
<title>Enter E-mail Data</title>
</head>
<body>
<form name="theform" method="post" action="send.php">
<table>
<td>Correo:</td>
<td><input type="text" name="from" size="50"></td>
</tr>
<tr>
<td>Asunto:</td>
<td><input type="text" name="subject" size="50"></td>
</tr>
<tr>
<td valign="top">Mensaje:</td>
<td>
<textarea cols="60" rows="10" name="message"
>Escriba aqui su mensaje</textarea>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="Envia">
<input type="reset" value="Regresa">
</td>
</tr>
</table>
</form>
</body>
</html
El Botón "submit" me deriva a la accion de enviar el mail, y todo OK
Como hacer para que el botón "Regresa" efectivamente Regrese a una pantalla anterior
Valora esta pregunta


0