想看看是否有人可以就如何解决我目前面临的这个问题提供一些建议/指示。场景就像……</p>
- 我有一个页面说 A 执行搜索并显示数据。
- 在页面 A 上有一个 ActionLink,它将所选记录的 ID 传递到页面 B。
在重定向到页面 B 之前,我需要存储/保留页面 A 的表单数据(我不想使用会话或隐藏文件,因为数据很关键)。
一旦用户在页面 B 上完成工作,我需要在页面 B 上保存更改并重定向回页面 A。
- 此处,页面 A 应根据步骤 3 中的保存器表单数据发出 Post 请求。目的是显示在重定向到页面 B 之前存在的搜索数据。
就像是..
View A
// Search textboxes here
// Search data list here with ActionLink column
View B
// more controls here
// Submit button - saves changes on this page.
// after submit button processing need to go back to View A
// and display the same Search data List based on Seach textboxes values
// those were entered by user before coming to this View B.
// Ques: Not sure how to persist data from View A between calls to View B and then View B to View A.
有没有人有更好的方法来实现这一目标?
目前我的解决方案是......
- 在 ActionLink 单击上发出 ajax POST 请求并使用控制器将表单集合保存在缓存中。
- 使默认的 ActionLink GET 请求传递 ID 并在控制器中返回视图 B。
- 在视图 B 上,在提交时执行 ajax POST 请求以将数据保存在页面 B 上并在 ajax 成功函数中从缓存中返回数据。
- 使用在上述 ajax 成功中返回的数据发出另一个 ajax POST 请求以显示视图 A。
提前致谢