【发布时间】:2017-10-09 08:36:58
【问题描述】:
我有一个枚举下拉菜单
//control
@Html.EnumDropDownListFor(
m => m.OrderBy,
new {@class = "btn btn-default dropdown-toggle toggle", onchange = "document.getElementById('hf_Pagename').value,this.form.submit();"})
//my enum
public enum OrderByOptions
{
Default,
PriceLowToHigh,
PriceHighToLow,
MostRecent
}
现在的问题是我需要对它们进行本地化。但在这种情况下,从“PriceLowToHigh”需要更改为“Price-low to high”
【问题讨论】: