这是我的下拉列表:
@Html.DropDownListFor(m => m.ReportType, new SelectList(ViewBag.DateRange as List<SelectListItem>, "Value", "Text"), new { @class = "w150" })
我无法弄清楚将默认值放在哪里?我的默认值是'ThisMonthToDate'
有什么建议吗?
答案 0 :(得分:0)
如果您的视图中包含模型,我强烈建议您避免使用ViewBag
,而是在模型/ ViewModel中添加Property
来保存选择列表项。所以你的Model / ViewModel看起来像这样
public class Report
{
//Other Existing properties also
public IEnumerable<SelectListItem> ReportTypes{ get; set; }
public string SelectedReportType { get; set; }
}
然后在您的GET Action方法中,您可以设置该值,如果您想将一个选择选项设置为默认选择的选项,如此
public ActionResult EditReport()
{
var report=new Report();
//The below code is hardcoded for demo. you mat replace with DB data.
report.ReportTypes= new[]
{
new SelectListItem { Value = "1", Text = "Type1" },
new SelectListItem { Value = "2", Text = "Type2" },
new SelectListItem { Value = "3", Text = "Type3" }
};
//Now let's set the default one's value
objProduct.SelectedReportType= "2";
return View(report);
}
并在您的强类型视图中
@Html.DropDownListFor(x => x.SelectedReportType,
new SelectList(Model.ReportTypes, "Value", "Text"), "Select Type..")
上面代码生成的HTML标记将使用值为2的选项进行HTML选择,为selected
一个。