Request.QueryString 是获取URL中"?id=xx"中的参数,Request.QueryString["id"]

Request.Form是获取表单中提交上来的数据:

<form name=form1 method=post><input type=text name="user" value=""></input></form>

Request.Form["user"]

相关文章:

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