Asp.Net MVC 中下拉列表的选择范围有限?
我想将 View 中的字段绑定到 ViewModel 中的属性。该对象是“程序”并具有属性“名称”和“级别”。因此,用户应该能够设置程序的名称以及他/她使用该程序的经验级别。
程序是Sql Server数据库中的一张表,通过实体框架访问。因此,将 ViewModel 中的 Level 属性绑定到文本框是很容易的:
@Html.TextBoxFor(model => model.Level)
但我想要一个具有有限数量级别(1-5)的下拉列表。那么我该如何做到这一点并且仍然将下拉列表绑定到 ViewModel 属性呢?
I want to bind a field in a View to a property in a ViewModel. The object is "Program" and has the properties "Name" and "Level". So the user should be able to set the name of a program and the level of experience he/she has with this program.
Program is a table in an Sql Server database, and is accessed through Entity Framework. So it would be easy enough to bind the Level property in the ViewModel to a textbox:
@Html.TextBoxFor(model => model.Level)
But I want a dropdownlist with a limited number of levels (1-5). So how do I do this and still have the dropdownlist bind to the ViewModel property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)