将数据发布到另一个aspx页面

发布于 2024-12-29 09:11:12 字数 476 浏览 0 评论 0原文

我有一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪也成诗 2025-01-05 09:11:12

您应该在目标页面上使用 PreviousPage 属性。

这是一篇有关如何进行交叉回发的文章

You should be using PreviousPage property on the target page.

Here is an article on how to make cross post backs work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文