dropDownlist アイテムを選択するときに、テキストボックスに値を入力する必要があります....そうする方法があれば....よろしくお願いします
<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>