日期:2014-05-19  浏览次数:20438 次

怎样得到表单值
index.htm的代码如下:
...
<form   action= "login.aspx "   method= "post ">
  <input   type= "text "   id= "username "/>
  <input   type= "submit ">
</form>
...

login.aspx怎样得到表单中的username值?我试用Request.QueryString不行。

------解决方案--------------------
request.form[ "username "]