单击提交时将变量传递到新页面
我有一个页面有 2 个 dropdrownlists &提交按钮。当我单击提交时,我想将下拉列表的值(变量)传递到另一个页面。
任何关于实现这一目标的想法或建议。我已经使用 asp:HyperLinkField 做了类似的事情,但是这在我当前的情况下不起作用。
I have a page with 2 dropdrownlists & a submit button. I would like to pass the values(variables) of the dropdownlists to another page when I click submit.
Any thoughts or suggestions as to accomplish this. I have done something similar to this using asp:HyperLinkField, but I this does not work in my current scenario.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要在数据来源的第二页上放置声明。
所以你有:
在 SecondPage.aspx 上你声明你可以在哪里获取信息
,然后你可以通过...
一些参考来获取它们。
ASP.NET 网页中的跨页发帖
ASP.NET如何访问公共属性?
跨页面回发并再次保留来自源的数据页面
You need to place a declaration on the second page where data come from.
So you have:
On SecondPage.aspx you declare where you can get informations
and you get them by...
Some reference.
Cross-Page Posting in ASP.NET Web Pages
ASP.NET how to access public properties?
Cross-page postbacks and back again retaining data from source page
将它们放入会话中并从另一个页面上的会话访问它们怎么样?
What about putting them in session and accessing them from session on another page?
你不能使用这个:
PreviousPage 是你其他页面的名称吗?
cant u use this:
with PreviousPage being the name of your other page??