asp.net mvc - how do you add an event to a dropdown list added in this way @Html.DropDownList("List")? -
how add 1 or more events dropdownlist added in way
@html.dropdownlist("list") ?
if comfortable using jquery:, try this:
$("#dropdownlistid").change(function () { var selectedvalue = $(this).val(); //do whatever want on selection changes here });
Comments
Post a Comment