在ASP.NET MVC中,要使用单选模式创建ListBox,可以使用以下步骤:
public class ListBoxModel
{
public int ID { get; set; }
public string Name { get; set; }
}
public ActionResult ListBoxExample()
{
List<ListBoxModel> items = new List<ListBoxModel>
{
new ListBoxModel { ID = 1, Name = "Item 1" },
new ListBoxModel { ID = 2, Name = "Item 2" },
new ListBoxModel { ID = 3, Name = "Item 3" },
new ListBoxModel { ID = 4, Name = "Item 4" },
};
ViewBag.Items = items;
return View();
}
Html.ListBox
方法创建ListBox。例如:@Html.ListBox("ListBoxExample", new SelectList(ViewBag.Items, "ID", "Name"), new { @class = "form-control" })
[HttpPost]
public ActionResult ListBoxExample(int[] selectedItems)
{
// 处理选择的项目
return View();
}
这样,就可以在ASP.NET MVC中使用单选模式创建ListBox了。
领取专属 10元无门槛券
手把手带您无忧上云