如何避免查询字符串参数被记住?
我正在网站上开发消息系统。
当用户发送消息时,她会被重定向到 inbox?status=sent
,其中显示简洁的状态消息已发送。
但是,如果她继续查看任何收件箱消息并单击返回,她将再次进入此状态页面,而我不想再显示它。
处理这个问题的标准方法是什么?
I'm developing a messaging system on a website.
When user sends a message, she is redirected to inbox?status=sent
which displays a neat status Message sent.
However, if she then goes on to see any of the inbox messages and clicks Back, she is brought to this statusful page again, whereas I don't want to display it anymore.
What is the standard way to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 TempData ,
并在结果视图中通过从 TempData 获取消息来显示消息:
You could try using
TempData
and in the Result view you could show the message by fetching it from TempData: