Saving state between actions

I'd like to ask for a solution. For example we have a page. And I have a link to a another action from this page. I want to have an ability to save the values of entered data on the page. For instance I go to another page enter data and go back. Like the wizard. But the problem is that we can come to the action from different pages. And it need to save several data types.

Is it understand? Any suggestions?

I'd like to have common solution....


您也可以使用TempData在请求之间保存数据。


In the past for wizards I have used Session to store data as it gets built up along the way.

One thing to not forget is to validate the data you are storing in the session everytime you go to use it. If not a user can exploit the back button to fake certain scenarios. For example:

  • User uses the wizard and gets to step 3 in the wizard.
  • They then go to another page that is not part of the wizard.
  • Then the user enters the wizard again and only gets to step 2 of the wizard.
  • User then uses the back button to go all the way back to the original wizard that they were on step 3 for.
  • In this case the data in your session if posted will think it came from the original wizard even though the data in the session is reflecting only up to step 2 from when the user accessed the wizard the second time. Use a unique key each time someone starts a wizard and validate it at each step.

    Hope that helps and isn't too confusing (it was a bit to me typing it).

    An alternative is to persist the data via the TempData but each time you will need to pull it out and persist it for posting back to the next step. Then rebuild it, add to it and repeat. This can be a lot of work as well but at least you don't have to worry about things happening out of synch.

    链接地址: http://www.djcxy.com/p/42120.html

    上一篇: c#Asp .Net Ajax发送字符串

    下一篇: 在动作之间保存状态