0
我想添加另一個下拉列表。下面的代碼適用於一個下拉菜單,但是如何爲分類添加一個?如何在MVC3的ActionResult中添加多個Dropdownlist
public ActionResult Create()
{
var ddl = new Users();
ddl.DropDowns = userRepository.Getddl("Departments").Select(c => new SelectListItem
{
Value = c.DropdownID.ToString(),
Text = c.DropdownText
});
ViewData["ListofProfiles"] = new SelectList(ListofProfiles, "Value", "Text");
return View(ddl);
}
您好再次Shyju。很高興知道你在這個問題上得到了回報。 –
@StoneTempleAviators:不客氣。 :) 很高興我能幫上忙。 :) – Shyju
我檢查了你的網站。我期待看到您的CRM解決方案。 –