我是 MVC 的新手,我被困在某个项目中,我想检查批处理的可用性,我使用的是下拉列表,它由批处理表填充。
我的问题是,当我同时从下拉列表中选择一个批次时,它会给 Msg 该批次是否可用。
批处理表结构为:BatchID BachName TotalSeat AvailableSeat 01 L1 50 40 02 L2 20 20
我不知道怎么做这个任务。
我是 MVC 的新手,我被困在某个项目中,我想检查批处理的可用性,我使用的是下拉列表,它由批处理表填充。
我的问题是,当我同时从下拉列表中选择一个批次时,它会给 Msg 该批次是否可用。
批处理表结构为:BatchID BachName TotalSeat AvailableSeat 01 L1 50 40 02 L2 20 20
我不知道怎么做这个任务。
您可以从这个链接中看到不同的解决方案:
@using (Html.BeginForm("Method", "YourController")) {
@Html.DropDownList("Id", ViewBag.DropDownCollection as SelectList, "--pick--", new {
title = "Pick Batch",
onchange = "submit();"
});
}
ActionResult
public ActionResult Method(string Id)
{
//do the logic here
}