关于页面参数传递的问题。
空闲独处 2003-09-16 01:56:48 <%
Response.Write Request("pg") & "<BR>" & Request("chiiki") & "<BR>" & Request("kikan") & "<BR>" %>
<form action="temp.asp">
<input type="hidden" name="pg" value="abc">
<input type="hidden" name="chiiki" value="chiiki">
<input type="hidden" name="kikan" value="kikan">
</form>
<a href="#" onClick="document.forms[0].target='_self';document.forms[0].submit();">测试</a>
有上面一段程序,因为传递的参数不希望被用户看到,又不能用按钮,所以想用隐藏域来传递,可是上面的这段程序执行后,地址栏还是会出现一大串的参数,求高手指点解决的方法。