将值从一个 aspx 页面读取到另一页面

发布于 2024-08-24 21:55:17 字数 139 浏览 5 评论 0原文

我有两个页面:1)网页控件(ascx页面)和2)网页(没有母版页的aspx页面)。 现在我通过渲染时的 Javascript 通过 google api 计算第 2 页上的一些值,并且我需要通过代码将这些值传输到隐藏字段中的第 1 页。请帮助

库什

i have two pages: 1) web control(ascx page) and 2) web page(aspx page without master page).
Now i calculate some values on page2 through google api through Javascript on render, and i need to transfer these values to page 1 in a hidden field through code. please help

Khushi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

江城子 2024-08-31 21:55:17

一种方法(多种方法):

  • 在客户端:填充隐藏的
    字段,提交表单(用js)
  • Code Behind
    第2页:收集代码中的数据
    后面,填充会话,
    Response.Redirect to page 1

另一种:

  • 如果不使用隐藏字段,您可以
    只需将计算结果附加到
    查询字符串。 (/page.aspx?myResult=xy)

One way (of many):

  • On the Client side: Fill the hidden
    field, submit the form (with js)
  • Code Behind
    Page 2: Collect the data in the code
    behind, Populate the session,
    Response.Redirect to page 1

Another:

  • Without using the the hidden field, you could
    just append the calculation result to
    the query string. (/page.aspx?myResult=xy)
幼儿园老大 2024-08-31 21:55:17

明显、快速的答案:使用查询字符串或会话对象。

Obvious, quick answer: use querystring or Session object.

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