在 ASP.NET 中重定向页面时检查会话?
场景如下:第 1 页有一个文本框,如果填充该文本框,则该文本框将成为会话的名称。 它还具有一个按钮,可将您带到第 2 页(单击时)。
第 2 页也有一个按钮,可将您简单地重定向回第 1 页。 但是现在,如何在第 1 页的文本框中显示会话名称?
我认为我不能使用 Page_Load 函数,因为当您第一次访问第 1 页时,它会“干扰”。
任何建议将不胜感激。
谢谢
Here's the scenario: Page 1 has a text box that, if filled, will be the name of the session.
It also has a button that will take you to Page 2 (when clicked).
Page 2 has a button as well that simply redirects you back to Page 1.
But now, how do I show the session name in Page 1's textbox?
I don't think I can use the Page_Load function as that'll "interfere" when you first visit Page 1.
Any advice would be much appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果我理解你的问题,你可以在页面加载中使用类似的东西。
You could use something like this in page load, if I'm understanding your question.
它们是不同的页面,因此它们应该有不同的 Page_Load 事件。
他们第一次在第 1 页上发帖时,存储他们在会话中输入的值。然后,当您在第 1 页上时,只需查看会话即可查看该值是否已存储。如果是,则显示它。
They are different pages, so they should have different Page_Load events.
The first time they post on Page 1, store the value they entered in the session. Then, any other time you are on Page 1, just look in the session to see if that value is stored. If it is, display it.