我们如何在 ASP.NET mvc 框架中将数据从一个视图传递到另一个视图
我有一个页面(视图),在提交时我将控制权转移到另一个页面(视图),并且我想要一些填充在第一个视图中的值转移到下一个视图。我们如何在 ASP.NET MVC 中实现这一点?
I have a page(view) and on submit i transfer control to another page(view) and i want some values which was filled in first view to transfer to next. How we can achieve that in ASP.NET MVC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
中可用的所有常规数据传输方法
您可以使用 ASP.net客户端 :
1. 饼干
2. 查询字符串
服务器端:
1. 会话
有关这些的详细信息,请参阅 http://msdn.microsoft.com/ en-us/library/75x4ha6s.aspx
谢谢,
阿什瓦尼
You can all conventional data transfer method which are available in ASP.net
Client Side:
1. Cookie
2. Querystring
Server side:
1. Sessions
For more information on these see http://msdn.microsoft.com/en-us/library/75x4ha6s.aspx
Thanks,
Ashwani