我在表格中有一个包含这一价值的领域“美国非洲”。 我想得到实地的价值,把案文分开,并把它列入倒数清单。 我正在使用MVC。
迄今为止,我有:
public static SelectList SplitText(this HtmlHelper html, string texttosplit, string seperator)
{
return new SelectList(texttosplit.Split( | ));
}
但是,我不知道如何在从名单上删除的名单中约束这一问题。
@Html.DropDownListFor(model => model.EM_opt1Values, @Html.SplitText(this will have an error it will not accept model => model.EM_opt1Values) )