我创建了一个 mvc3 应用程序。当前将提交表单值保存Session
到其中,因为在将更改保存到数据库之前我需要做一些事情。
有没有其他像在 mvc 中存储临时数据的好方法ViewState
?
每次输入数据以及单击提交按钮时,我都会将表单输入值保存到 Session 变量中。
每次提交后,我都会用新的附加值填充我的会话变量,并将所有这些值显示到 webgrid 中。
完成插入后,最后单击更新按钮,该按钮从 webgrid 获取所有值并作为参数传递给一个存储过程。
Now here i want to achieve 2 things
1.need to save all inserted data as clicked on submit it gets refresh all time.
so need to save all previous data to.
2.currently using session variable which sets to webgrid to show data into webgrid and once done with insertion passing those values to stored procedure.
所以需要知道任何其他保存数据的好方法。
Else can use javascript to do this all on client side.