ASP.net 会话替代方案

发布于 2024-10-27 08:40:52 字数 182 浏览 3 评论 0原文

我有一个网络表单,是一项供用户使用一系列问题填写的调查。 我将用户到达的序列存储在会话变量中。

这个实现的问题在于: 假设用户处于会话 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-11-03 08:40:52

您可以将步骤号存储为表单上的隐藏字段,以便将其与表单一起提交。这样,即使用户使用后退按钮,您也可以响应相关步骤。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文