在使用Razor和C#将两个ListBoxes中的选定值返回到MVC控制器的过程中,可以按照以下步骤进行操作:
@Html.ListBox("listBox1", Model.ListBox1Items)
@Html.ListBox("listBox2", Model.ListBox2Items)
[HttpPost]
public ActionResult GetSelectedValues(List<string> listBox1Values, List<string> listBox2Values)
{
// 处理选定的值
// ...
return View();
}
@using (Html.BeginForm("GetSelectedValues", "ControllerName", FormMethod.Post))
{
@Html.ListBox("listBox1Values", new MultiSelectList(Model.ListBox1Items))
@Html.ListBox("listBox2Values", new MultiSelectList(Model.ListBox2Items))
<input type="submit" value="Submit" />
}
通过以上步骤,你可以使用Razor和C#将两个ListBoxes中的选定值返回到MVC控制器。在控制器的动作方法中,你可以进一步处理这些选定值,例如存储到数据库或进行其他业务逻辑操作。
注意:在回答中没有提及具体的腾讯云产品和链接地址,因为要求不提及云计算品牌商。如果需要了解腾讯云相关产品和服务,可以参考腾讯云官方网站或咨询腾讯云的客服人员。
领取专属 10元无门槛券
手把手带您无忧上云