ASP.NET MVC 2 - 从下拉列表和列表框中检索所选值

发布于 2024-10-30 13:09:16 字数 417 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云之铃。 2024-11-06 13:09:16

很简单,下拉列表是一个 HTML 选择控件,它的值将位于发布到操作的表单值中,因此如果您将表单设置为发布到操作,则在您需要的 aciton 中:

public ActionResult RecieveForm(FormCollection values)
{
   var dropdownSelectedvalue = values["nameofdropdown"];
   ...
   work with result
   ...
   return View()
}

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:

public ActionResult RecieveForm(FormCollection values)
{
   var dropdownSelectedvalue = values["nameofdropdown"];
   ...
   work with result
   ...
   return View()
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文