参数传递问题????先谢过啦!!!!
<form name="form1" method="post" action="test.asp">
<input name="test" type="text" id="test" value="">
<input type="submit" name="Submit" value="提交">
</form>
<%
test=request("test")
response.write test
%>
请问将当前页面表单的参数传递给当前页面,这样行吗?