I need to put value in textbox when i select the dropDownlist item.... If there is way to do so.... Regards
<div class="form-group"> @Html.LabelFor(model => model.GenreType, new
{ @class = "control-label col-md-2" }) <div class="col-md-10">
@Html.EditorFor(model => model.GenreType)
@Html.DropDownListFor(model => model.GenreType, new SelectList(Enum.GetValues(typeof
(GenericLib.GenreTypes))))
@Html.ValidationMessageFor(model => model.GenreType) </div>
Try doing this with helper class,,,,