Skip to content

Instantly share code, notes, and snippets.

@DorukUlucay
Created June 25, 2019 14:25
Show Gist options
  • Save DorukUlucay/3340095cf91187ad739eb1577adb587b to your computer and use it in GitHub Desktop.
Save DorukUlucay/3340095cf91187ad739eb1577adb587b to your computer and use it in GitHub Desktop.
Razor Code Snippets

Razor DropDownListFor

@Html.DropDownListFor(model => model.StuffId, new SelectList(ViewBag.StuffList, "Value", "Text"), "Please Select", new { required = "required" })

Razor TextBoxFor

@Html.TextBoxFor(x => x.SomeStuff, "", new { @class = "form-control", placeholder = "Type in some stuff here" })

Razor TextBoxFor Date

@Html.TextBoxFor(x => x.SomeDate, "{0:yyyy-MM-dd}", new { @id = "Some Date",  type = "date",  @class = "form-control"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment