foreach (string path in System.IO.Directory.GetFileSystemEntries("C:\\"))
{}
@Html.DropDownListFor(Model=>Model.identity_fk, new SelectList(
new List<Object>{
new { value = 0 , text = "請選擇" },
new { value = 1 , text = "選項1" },
new { value = 2 , text = "選項2"}
},
"value",
"text",
0))