我很难将C#转换为VB。
我可以让它的对手在C#中工作。
我得到了这个: Selected value for dropdownlistfor in mvc4
在视图中:General.vbhtml
@Html.DropDownList("DST1");
在Controller中:GeneralController.vb
Function ddl() As ActionResult
Dim items As New List(Of SelectListItem)()
items.Add(New SelectListItem() With {.Text = "Yes", .Value = "1"})
items.Add(New SelectListItem() With {.Text = "No", .Value = "2"})
ViewBag.DST1 = items
Return View()
End Function