怎样得到表单值解决方法

怎样得到表单值index.htm的代码如下:...formaction login.aspx method post inputtype text i

怎样得到表单值
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 "]