我在视图中有以下模型和简单的下拉菜单。我想在下拉列表中填充客户名称。我尝试了以下代码,但没有成功,谁能告诉我如何使用 dropdownselect 语句指定列。
模型
public class customer
{
public int id { get; set; }
public string name { get; set; }
public string address { get; set; }
}
///////////////////////
@{
Layout = null;
}
@model IEnumerable<MvcApplication1.customer>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<div>
@Html.DropDownList("name",Model);
</div>