A ver si alguien me puede echar una mano porque llevo ya unos dias con este dichoso formulario y no me termina de funcionar.
Me esplico: el codigo del formulario es:
Código:
<html>
<head>
<title> formulario </title>
</head>
<html>
<form method="POST" action="[email protected]" name="informate" enctype="text/plain">
<p> <table width="462" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="121"><b><font color="#000000">Nombre</font></b></td>
<td width="321">
<!--webbot bot="Validation" s-data-type="String" b-allow-letters="TRUE" b-allow-whitespace="TRUE" --><input type="text" name="nombre" size="20">
</td>
</tr>
<tr>
<td width="121"><b><font color="#000000">País</font></b></td>
<td width="321">
<!--webbot bot="Validation" s-display-name="pais" s-data-type="String" b-allow-letters="TRUE" b-allow-whitespace="TRUE" --><input type="text" name="Pais" size="20"></td>
</tr>
<tr>
<td width="121"><b><font color="#000000">Provincia</font></b></td>
<td width="321">
<!--webbot bot="Validation" s-data-type="String" b-allow-letters="TRUE" b-allow-whitespace="TRUE" --><input type="text" name="Provincia" size="20">
</td>
</tr>
<tr>
<td width="121"><b><font color="#000000">E-mail</font></b></td>
<td width="321">
<!--webbot bot="Validation" s-data-type="String" b-allow-letters="TRUE" s-allow-other-chars="@ ." --><input type="text" name="mail" size="20">
</td>
</tr>
<tr>
<td width="121"><font color="#000000"><b>Teléfono de
contacto</b></font></td>
<td width="321"> <!--webbot bot="Validation" s-data-type="Number" s-number-separators="x." --><input type="text" name="telefono" size="20"></td>
</tr>
<tr>
<td width="121"><b> </b></td>
<td width="321">
</td>
</tr>
<tr>
<td width="121"><b><font color="#000000">Quiéres
comentar algo??</font></b></td>
<td width="321">
<textarea name="comentario" cols="50" rows="6"></textarea>
</td>
</tr>
<tr>
<td width="121"> </td>
<td width="321">
<input type="reset" name="borrar" value="Borrar">
<input type="submit" name="Enviar" value="Enviar">
</td>
</tr>
</table>
</form>
<p> </p>
</table>
</body>
</html>
que yo creo que esta bien. Lo subo al servidor, concretamente iespana.es y cuando lo relleno y lo quiere enviar me dale un error,concretamete el 404 que me dice que no esiste el documento.
Cuando quiero ver el codigo de la pagina me encuentro que mi formulario tiene un script en java que no se de donde ha salidoj que es el siguiente:
Código:
<!--pubframecondnopopup_a-->
<HTML>
<script language="javascript">
<!--
var ops_s;
ops_s = 400;
function myerror() { return true; }
onerror = myerror;
if(typeof(screen) != "undefined" if(screen.Height > 1) ops_s = screen.Height - 100;
if(typeof(window.innerHeight) != "undefined" if(window.innerHeight > 1) ops_s = window.innerHeight;
if(ops_s >= 400)
{
if(window == window.top)
{
var s='<HEAD><TITLE> formulario </TITLE></HEAD><FRAMESET ROWS="*,74" FRAMEBORDER="no" FRAMESPACING="0" border="0" bordercolor="#dddddd">'+
'<FRAME src="'+window.location+'?" name="doc">'+
'<FRAME src="http://www.iespana.es/heberg/pub.htm?Time=1076335657&Nom=herlanztunegocio&FRAME=1" name="pubframe" scrolling="no" noresize>'+
'</FRAMESET>';
document.write(s);
}
}
function relpub()
{
if((top.ops_s >= 400) || (top.ops_s < 1))
{
if(top.pubframe != null)
top.pubframe.pubrelpub();
}
}
function relpubloc()
{ top.relpub(); }
//-->
</script>
</HTML>
.- Porqué me sale ese script ?
.- por que no me va el formulario?
Agradecira que me echaseis una mano.