Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
VITA
/
Views
/
ADBLBranch
/
Edit File Name :
Edit.cshtml
@model RER_Project.DataAccess.Models.ADBLBranchModel @{ ViewBag.Title = "Edit"; Layout = "~/Views/Shared/_Layout.cshtml"; } <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <label style="font-size: medium"><b>Edit Branch</b></label> <hr /> @using (Html.BeginForm("Edit", "ADBLBranch", FormMethod.Post)) { <div class="row"> <div class="form-group col-md-6"> <label for="branchname"><strong>BranchName</strong></label> @Html.TextBoxFor(model => model.branchname, htmlAttributes: new { @class = "form-control", @id = "branchname" }) @Html.ValidationMessageFor(model => model.branchname, "", new { @class = "text-danger" }) </div> <div class="form-group col-md-6"> <label for="code"><strong>Code</strong></label> @Html.TextBoxFor(model => model.code, htmlAttributes: new { @class = "form-control", @id = "code" }) @Html.ValidationMessageFor(model => model.code, "", new { @class = "text-danger" }) </div> <div class="form-group col-md-6"> <label><strong>Province</strong></label> <select type="text" class="form-control required" name="ProvinceId" id="ProvinceId" data-api="/province/select/threeStates" data-api-selected-value="@Model.provinceid"></select> </div> <div class="form-group col-md-6"> <label><strong>District</strong></label> <select type="text" class="form-control required" name="DistrictId" id="DistrictId" data-api="/districts/select" data-api-selected-value="@Model.districtid" disabled=""></select> </div> <div class="form-group col-md-6"> <label><strong>Municipality</strong></label> <select type="text" class="form-control required" id="MunicipalityId" name="MunicipalityId" data-api="/municipality/select" data-api-selected-value="@Model.municipalityid" disabled=""></select> </div> @*<div class="form-group col-md-6"> <label><strong>Ward No</strong></label> <input pattern="\d*" oninput="validity.valid||(value='');" class="required form-control" id="WardNo" name="WardNo " min="1" /> </div>*@ <div class="form-group col-md-6"> <label for="district"><strong>Ward No</strong></label> @Html.TextBoxFor(model => model.wardno, htmlAttributes: new { @class = "form-control", @id = "WardNo" }) @Html.ValidationMessageFor(model => model.wardno, "", new { @class = "text-danger" }) </div> @*<div class="form-group col-md-6"> <label for="district"><strong>District</strong></label> @Html.TextBoxFor(model => model.district, htmlAttributes: new { @class = "form-control", @id = "district" }) @Html.ValidationMessageFor(model => model.district, "", new { @class = "text-danger" }) </div>*@ <div class="form-group col-md-6"> <label for="contactperson"><strong>ContactPerson</strong></label> @Html.TextBoxFor(model => model.contactperson, htmlAttributes: new { @class = "form-control", @id = "contactperson" }) @Html.ValidationMessageFor(model => model.contactperson, "", new { @class = "text-danger" }) </div> <div class="form-group col-md-6"> <label for="contactno"><strong>ContactNo</strong></label> @Html.TextBoxFor(model => model.contactno, htmlAttributes: new { @class = "form-control", @id = "contactno" }) @Html.ValidationMessageFor(model => model.contactno, "", new { @class = "text-danger" }) </div> <div class="form-group col-md-1"> <label for="contactno"><strong>Is Active</strong></label> @Html.CheckBoxFor(model => model.isactive, htmlAttributes: new { @class = "form-control", @id = "isactive" }) @Html.ValidationMessageFor(model => model.isactive, "", new { @class = "text-danger" }) </div> <div class="form-group col-md-2 pull-right"> <input type="submit" value="Save" class="btn btn-primary" id="SubmitButton" /><span> </span> <a href="/ADBLBranch/List" class="btn btn-default">Back</a> </div> </div> } </div> </div> </div> </div> </div> <script> $(document).ready(function () { window.initializeSelectApis(); window.initializeCascadeLocation(); }) </script>
Save