我有两个html助手下拉列表,用于在我的mvc Web应用程序中显示区和城镇。我正在使用vb.net 下面是我在视图层中的两个下拉列表。
@*Dropdownlist1*@
@Html.DropDownList("Districts", Nothing, "All",
htmlAttributes:=New With {.class = "form-control", .onchange = "$(this).closest('form').submit();"})
@*Dropdownlist2*@
@Html.DropDownList("Towns", Nothing, "All",
htmlAttributes:=New With {.class = "form-control", .onchange = "$(this).closest('form').submit();"})
在我的服务器端代码中,我需要知道两个下拉列表控件中的哪一个在选择/更改后导致回发。 我需要一种传递下拉列表名称的方法,或者作为提交值的一部分的等价物。