ASP.net 会话替代方案
我有一个网络表单,是一项供用户使用一系列问题填写的调查。 我将用户到达的序列存储在会话变量中。
这个实现的问题在于: 假设用户处于会话 3 并按返回,他将获得他希望更改的会话 2 的答案。如果他现在按“下一步”,他将被告知并非第 3 节的所有问题均已填写。
有没有 Session 变量的替代方案可以让我解决这个问题?
I have a webform that is a survey for users to fill using a sequence of questions.
I am storing the sequence reached by the user in session variable.
The problem with this implementation is that:
Suppose the user is at session 3 and press back, he will get the answers of session 2, which he wish to alter. If he now press next, he will be informed that not all questions of session 3 are filled.
Is there an alternative to Session variable that will allow me to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将步骤号存储为表单上的隐藏字段,以便将其与表单一起提交。这样,即使用户使用后退按钮,您也可以响应相关步骤。
You can store the step number as a hidden field on the form so that it is submitted along with the form. In this way you can respond to the relevant step even if the user uses the back button.