Skip to content

Instantly share code, notes, and snippets.

View Grepsy's full-sized avatar

Robert Massa Grepsy

  • The Sustainables
  • Amsterdam
View GitHub Profile
@model EditUserModel
@using (Html.BeginForm())
{
<div>
@Html.HiddenFor(m => m.Id)
@Html.TextBoxFor(m => m.FirstName)
@Html.TextBoxFor(m => m.LastName)
@Html.DropDownListFor(m => m.CountryId, Model.Countries)