将值从一个 aspx 页面读取到另一页面
我有两个页面: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种方法(多种方法):
字段,提交表单(用js)
第2页:收集代码中的数据
后面,填充会话,
Response.Redirect to page 1
另一种:
只需将计算结果附加到
查询字符串。 (/page.aspx?myResult=xy)
One way (of many):
field, submit the form (with js)
Page 2: Collect the data in the code
behind, Populate the session,
Response.Redirect to page 1
Another:
just append the calculation result to
the query string. (/page.aspx?myResult=xy)
明显、快速的答案:使用查询字符串或会话对象。
Obvious, quick answer: use querystring or Session object.