@model GarageBandz.Domain.County

Dashboard Gestione Province

Da questa pagina puoi creare o modificare le province
@using (Html.BeginForm("SaveCounty", "Place", FormMethod.Post)) {
@Html.TextBoxFor(x => x.Name, new { @class="form-control" })
@Html.DropDownListFor(x => x.State.Id, GarageBandz.Web.Helpers.Metadata.States(Model.State.Country.Id), "Seleziona...", new { @class = "form-control" })
@Html.HiddenFor(x => x.State.Id) @Html.HiddenFor(x => x.Id) }