Autopost back in mvc drop down list

前端 未结 4 873
借酒劲吻你
借酒劲吻你 2021-01-03 00:22

Requirment: I have a drop down list on my view page, displaying a list of vendors. When a vendor is selected from the dropdown, the page displays the details of selected ven

4条回答
  •  青春惊慌失措
    2021-01-03 00:43

    Change the dropdown instantiation to this

    @Html.DropDownList("VendorList", @Model.vendorSelectList, new { onchange = "$(this).parent('form:first').submit();" }})
    

提交回复
热议问题