Autopost back in mvc drop down list

前端 未结 4 836
借酒劲吻你
借酒劲吻你 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:42

    You can do it by this way:

    @Html.DropDownList("VendorList", @Model.vendorSelectList, "--Select Vendor--", new { @onchange = "this.form.submit();" })
    

提交回复
热议问题