Craete A Drop down list in asp .net mvc using standard html select and options tag and populate them. note a dataset is passed in the below example and not a list. <% foreach (System.Data.DataRow oDataRow in Model.DataSetCountry.Tables[0].Rows) { %> "><%= oDataRow["CountryName"] %> <% } %>