@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.DropDownListFor(model => model.CityIDFK, new List { }, htmlAttributes: new { @class = "form-control validate[required] select2 CityIDFK nested" })
@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" })
@Html.EditorFor(model => model.PhoneNo1, new { htmlAttributes = new { @class = "form-control validate[required,maxSize[56]] PhoneNo1" } }) @Html.ValidationMessageFor(model => model.PhoneNo1, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.PhoneNo2, new { htmlAttributes = new { @class = "form-control validate[maxSize[56]] PhoneNo2" } }) @Html.ValidationMessageFor(model => model.PhoneNo2, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.MobileNo, new { htmlAttributes = new { @class = "form-control validate[maxSize[56]] MobileNo" } }) @Html.ValidationMessageFor(model => model.MobileNo, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.email1, new { htmlAttributes = new { @class = "form-control",type = "email" } }) @Html.ValidationMessageFor(model => model.email1, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.email2, new { htmlAttributes = new { @class = "form-control", type = "email" } }) @Html.ValidationMessageFor(model => model.email2, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.website_address, new { htmlAttributes = new { @class = "form-control website_address"} }) @Html.ValidationMessageFor(model => model.website_address, "", new { @class = "text-danger" })
@Html.EditorFor(model => model.pin_location, new { htmlAttributes = new { @class = "form-control pin_location", } }) @Html.ValidationMessageFor(model => model.pin_location, "", new { @class = "text-danger" })
@*} }*@