Skip to content

Instantly share code, notes, and snippets.

@astannard
Created April 15, 2014 13:57
Show Gist options
  • Save astannard/10734884 to your computer and use it in GitHub Desktop.
Save astannard/10734884 to your computer and use it in GitHub Desktop.
DropDownListFor
@Html.DropDownListFor(x=>x.ListName,
Model.ListName.Select(i => new SelectListItem
{
Value = i.Id.ToString(),
Text = i.Title
}),
new { @class = "input-full" })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment