DropDownListFor
ページで aと a ラベル テキストを使用しています。
<%=Html.DropDownListFor(x => x.MotiveClientType,
new SelectList(
Model.ClientMotives, "Id", "Label", Model.MotiveClientType),
new { id = "ddlMotiveClientType" }
)%>
で値を選択するときにラベルを変更するにはどうすればよいDropDownListFor
ですか?