将数据发布到另一个aspx页面
我有一个简单的 aspx 页面,其中有一个表单和一个输入字段,如下所示。
//basket.aspx
<input type="text" id="TotalPrice" runat="server" name="TotalPrice" value="100" />
<asp:button ID="btnBuy" runat="server" Text="make payment" PostBackUrl="~/payment" />
</form>
这将转到 payment.aspx,但是当我在 payment.aspx 的页面加载中调试 Request.Form 时,我无法达到像 Request.Form["TotalPrice"] 这样的 TotalPrice 值。向另一个 aspx 页面发布帖子以获取值的最佳方法是什么?为什么我尝试的方法不起作用?
I have simple aspx page that has a form and a input field in it something like below.
//basket.aspx
<input type="text" id="TotalPrice" runat="server" name="TotalPrice" value="100" />
<asp:button ID="btnBuy" runat="server" Text="make payment" PostBackUrl="~/payment" />
</form>
This is going to payment.aspx but when I debug the Request.Form in the page load of the payment.aspx, I cannot reach the TotalPrice value like Request.Form["TotalPrice"]. What is the best way to make a post to another aspx page to get values ? Why the way I am trying to does not work ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在目标页面上使用 PreviousPage 属性。
这是一篇有关如何进行交叉回发的文章
You should be using PreviousPage property on the target page.
Here is an article on how to make cross post backs work