I followed the instructions on this post: Asp.net mvc3 razor with multiple submit buttons and here is my model:
public class AdminModel
{
public string Command { get; set; }
}
我的主计长
[HttpPost]
public ActionResult Admin(List<AdminModel> model)
{
string s = model.Command;
}
我的看法
@using (Html.BeginForm("Admin", "Account"))
{
<input type="submit" name="Command" value="Deactivate"/>
<input type="submit" name="Command" value="Delete"/>
}
当我退席时,扼杀“s”总是无效。
我还在本论坛员额( and thats also no. 我做了什么错误?