My controller action code:
ViewBag.country = from p in CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures)
select new SelectListItem
{
Text = p.EnglishName,
Value = p.DisplayName
};
View code:
<dl>
<dt>
<label>
Country:
</label>
</dt>
<dd>
@Html.DropDownListFor(model => model.Country, (IEnumerable<SelectListItem>)ViewBag.country)
</dd>
<dl>
It generates a drop-down list of unsorted languages. But I need a drop-down list of sorted country list. Help Please!!!!