【发布时间】:2017-06-07 12:45:07
【问题描述】:
在Index.cshtml中可以找到以下HTML代码--
<select data-val="true" data-val-required="Please choose your country "
id="Country" name="Country" class="form-control" style="width: 200px;" >
<option value="">-- Select Country --</option >
@foreach (var country in (List<Country>)ViewBag.AvailableCountries )
{
<option value="@country.Id">@country.Name</option >
}
</select>
<span class="field-validation-valid text-danger" data-valmsg-for="Country "
data-valmsg-replace="true"></span>
请改进 HTML 以使用 Razor HTML Helpers,例如 DropDownListFor 和
ValidationMessageFor.
【问题讨论】:
-
请改进您的要求...,只需使用 DropDownListFor。如果你问如何使用 DropDownListFor,那么问那个...