@model BOL.Model.civ_Address
@*@{
using (Ajax.BeginForm("AddClient", "Client", new AjaxOptions()
{
HttpMethod = "POST",
OnSuccess = "OnSuccess",
OnFailure = "OnFailure",
}, new { enctype = "multipart/form-data" }))
{*@
@Html.HiddenFor(model => model.Id)
@Html.DropDownList("SateIDFK", (SelectList)ViewBag.StateIDFK, htmlAttributes: new { @id = "ddlStateIDFK", @class = "form-control validate[required] StateIDFK" })
@Html.EditorFor(model => model.Address, new { htmlAttributes = new { @class = "form-control validate[required,maxSize[256]] Address", @placeholder = "Enter Address" } })
@Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.ZipCode, new { htmlAttributes = new { @class = "form-control validate[maxSize[32]] ZipCode", @placeholder = "Enter Zipcode" } })
@Html.ValidationMessageFor(model => model.ZipCode, "", new { @class = "text-danger" })