codice:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento senza titolo</title>
</head>
<body>
<form action="update.asp" method="post" enctype="multipart/form-data" name="form1" id="form1">
<table width="95%" border="1">
<tr>
<td></td>
<td><input name="text" type="text" id="text" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="Submit" value="Invia" /></td>
</tr>
</table>
</form>
</body>
</html>
<%
a=request.form("text")
if a="" then
response.Write("ciao")
else
response.Write(a)
end if
%>
ecco qui