ASP.NET MVC 2 - 从下拉列表和列表框中检索所选值
我是 ASP.NET MVC 的新手,我正在使用 Steven Sanderson 书中概述的示例为 Web 应用程序创建一个多页面、类似向导的表单。
(请参阅 http://books.google .com/books?id=lfPkn31fpNQC&pg=PA477#v=onepage&q&f=false 以获得确切的示例)。
我已经让它工作到可以跨页面保存数据的地步,但我不知道如何为 DropDownList 控件或 ListBox 控件执行此操作。
谁能告诉我如何做到这一点?
谢谢。
I'm new to ASP.NET MVC and I'm using the example outlined in Steven Sanderson's book to create a multi-page, wizard like form for a web application.
(See http://books.google.com/books?id=lfPkn31fpNQC&pg=PA477#v=onepage&q&f=false for the exact example).
I have it working to the point where I can persist data across pages, but I have no idea how to do this for a DropDownList control or a ListBox control.
Can anyone show me how to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很简单,下拉列表是一个 HTML 选择控件,它的值将位于发布到操作的表单值中,因此如果您将表单设置为发布到操作,则在您需要的 aciton 中:
Quite simply the dropdown list is an HTML select control, it's value will be in the form values posted to the action so if you set your form to post to an action then in the aciton you need: