Sin duda que hay errores de concepto. Bien, por simplificar, he metido el botón enviar, y solo pretendo que el response.write me escriba los valores de los campos de texto.
Este es el código, pero tampoco va.
Código:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<%
Dim Var1,Var2,Var3
Var1=request.form("Fdesde")
Var2=request.form("Fhasta")
Var3="12/12/2010"
response.Write(Var1)
response.write(Var2)
response.write(Var3)
%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
</style>
</head>
<body>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<form id="form1" name="form1" method="post" action="">
<table width="1200" border="0" align="center">
<tr align="center" class="enlaces">
<td colspan="6">Selecciona las fechas para definir el informe</td>
</tr>
<tr>
<td colspan="3"> </td>
<td width="172"> </td>
<td width="246"> </td>
<td width="163"> </td>
</tr>
<tr>
<td width="137"> </td>
<td width="308"> </td>
<td width="148">Desde (dd/mm/aa)</td>
<td><label for="Fdesde"></label>
<input type="text" name="Fdesde" id="Fdesde" /></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="3"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>Hasta(dd/mm/aa)</td>
<td><label for="Fhasta"></label>
<input type="text" name="Fhasta" id="Fhasta" /></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="6" align="center"> </td>
</tr>
</table>
</form>
<table width="1200" border="0" align="center">
<tr>
<td align="center"><input type="submit" name="Enviar" id="Enviar" value="Enviar" /></td>
</tr>
</table>
</body>
</html>
¿qué esta mal?, o no está
Gracias