我对 MVC3 很陌生。在我的视图页面中,我有一个下拉列表和一些字段数据,方式如下。
看法:-
//dropdownlist data
@Html.DropDownList("Category", new SelectList(categoriesList, selectedCategory), "Select One", new { onchange = "this.form.submit();" })
@Html.EditorFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
<input type="submit" name="Create" value="Create" />
这里提交按钮和下拉控件都提交表单我想知道控制器如何识别调用是通过提交按钮而不是从下拉列表中发生的。非常感谢您的帮助。