Skip to content

Instantly share code, notes, and snippets.

@bjornmicallef
Last active September 4, 2020 14:34
Show Gist options
  • Save bjornmicallef/70ed5fd0f06a4728e7036a1f204477c5 to your computer and use it in GitHub Desktop.
Save bjornmicallef/70ed5fd0f06a4728e7036a1f204477c5 to your computer and use it in GitHub Desktop.
<div class="row">
<div class="col-md-4">
@Html.DropDownList("continents", ViewData["continents"] as List)
</div>
<div class="col-md-4">
@Html.DropDownList("countries", ViewData["countries"] as List)
</div>
<div class="col-md-4">
@Html.DropDownList("cities", ViewData["cities"] as List)
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment