我知道這很簡單,但對於Mvc來說是新的。我希望使用GetDescription方法中的數據 填充下拉框,以便下拉列表顯示說明,並在選擇時將代碼作爲值傳遞。Mvc 3:填充下拉框
我該如何寫html片?
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
public static List<Populate> GetDescription()
{
List<Populate> myInfor = new List<Populate>()
{
new Populate{Id=1,Description="Lagos", Code="lag"},
new Populate{Id=2,Description="Ibadan", Code="lba"},
new Populate{Id=3,Description="Akure", Code="Aku"},
new Populate{Id=4,Description="Ejigbo", Code="Eji"},
new Populate{Id=5,Description="Oshogbo", Code="Osh"}
};
return myInfor;
}
}
public class Populate
{
public int Id { get; set; }
public string Description { get; set; }
public string Code { get; set; }
}
Here is the html
*********************
@model PopulateDropDownList.Models.Populate
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<p>
@Html.DropDownList(Model.id, Model.Description, "--Select One--")
</p>
這就是我所得到的。 CS0103:名稱'GetDescription'在當前上下文中不存在。 – user2320476
@ user2320476我編輯了我的答案。將此代碼包含在靜態類中並在類級別上調用它。 –