<html>
<head>
<title>文本框提交修改</title>
<script language="javascript" >
function text1_change(val)
{
//设置表单
document.form1.action=self.location.href;//提交到本页
document.form1.submit();
}
</script>
</head>
<body>
<%
IF Request.Form("text1")="" Then
Response.Write "没有提交任何值"
Else
Response.Write "提交过来的值:"&Request.Form("text1")
End IF
%>
<form name="form1" method="post">
<input type="text" name="text1" onchange="text1_change(this.value);" value="修改这个文本框的内容" />
</form>
</body>
</html>