一个用于接收表单的post类型,一个用于接收表单的get类型传值和url传值
例如:
<form name="form1" method="post">
<input type="text" name="userName">
</form>
接收这个表单中的传值使用request.form
<form name="form1" method="get">
<input type="text" name="userName">
</form>
这个使用.
request.querystring()
还有直接的地址栏传值实际上也是get类型的.使用request.querystring()

相关文章:

  • 2021-05-21
  • 2022-01-20
  • 2022-12-23
  • 2021-06-26
猜你喜欢
  • 2022-01-29
  • 2022-12-23
  • 2021-09-26
  • 2022-12-23
  • 2021-08-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案