带 xval 的 ASP.NET MVC 向导表单
我使用 linqtosql 和 xval 来验证服务器端和客户端。 我正在尝试做一个向导样式的表单,但无法在不同的操作中传递实际值。
有任何想法吗?
im using linqtosql and xval to validate server side and client side. im trying to do a wizard style form but cant pass the actual values accross different actions.
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有三种选择:将值存储在 TempData 中,将值存储在 Session 中,或者将临时值写入视图中的隐藏字段并在每一步重新加载它们。
You have three choices: store the values in TempData, store the valus in the Session, or write the temporary values to hidden fields in the view and reload them at each step.