Mvc Dropdownlist Onchange Event With Value
I'm pretty new to MVC and i'm trying to determine the value of a DropDownList when the value is changed. At the moment the val variable being passed to my javascript function is al
Solution 1:
Try using a lower case 'v' for 'this.Value'
new { onchange = "onNearestDealersChange(this.value);"}
Post a Comment for "Mvc Dropdownlist Onchange Event With Value"