当前位置: 代码迷 >> ASP >> 无法获取表单变量解决思路
  详细解决方案

无法获取表单变量解决思路

热度:191   发布时间:2012-02-26 20:19:45.0
无法获取表单变量
无法获取表单变量,但是试了一下get是可以的,改成post就不行了,望高手指点。

form.asp:
<form   action= "display.asp "   method= "POST ">
<input   type= "text "   name= "number ">
<input   type= "submit ">
</form>

display.asp
<%
number=request.form( "number ")
response.write   number
%>


------解决方案--------------------
没问题的!我得到值了
  相关解决方案