如何从 post 方法获取值到 codehind 文件
我创建了一个网页,它将作为“post”方法发布。而不是作为“get”方法。
<html>
<head>
</head>
<body>
<FORM action="RetrieveData_Post.asp" id=form1 method=post name=form1>
First Name:
<br>
<INPUT id="txtFirstName" name="txtFirstName" >
<br>
Last Name:
<br>
<INPUT id="txtLastName" name="txtLastName" >
<br>
<INPUT type="submit" value="Submit">
</FORM>
</body>
</html>
我想检索另一个表单后面的代码中文本框中的值。请帮我。
I have created a Webpage which will post as "post" method..not as "get" method.
<html>
<head>
</head>
<body>
<FORM action="RetrieveData_Post.asp" id=form1 method=post name=form1>
First Name:
<br>
<INPUT id="txtFirstName" name="txtFirstName" >
<br>
Last Name:
<br>
<INPUT id="txtLastName" name="txtLastName" >
<br>
<INPUT type="submit" value="Submit">
</FORM>
</body>
</html>
i want to retieve the values in the textboxes in the code behind of another form. Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 action="RetrieveData_Post.asp" 更改为 action="RetrieveData_Post.aspx" 创建 aspx 页面并用于
检索值。
Change action="RetrieveData_Post.asp" to action="RetrieveData_Post.aspx" create the aspx page and use
for retrive values.
您可以在
HttpContext
中访问请求的表单字段:或者,要覆盖 cookie、表单、查询字符串和服务器变量,请使用
Item
或Params< /code> HttpRequest 实例的集合。
(在代码隐藏中,
Page
基本类型具有Request
属性,以避免通过HttpContext
。)You can access the form fields of a request in the
HttpContext
:or, to cover cookies, form, query string and server variables use either the
Item
orParams
collection of theHttpRequest
instance.(In code behind, the
Page
base type has aRequest
property to avoid going viaHttpContext
.)