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 :
ProductCreate.cshtml
@model RER_Project.DataAccess.Models.ADBLProductModel @{ ViewBag.Title = "ProductCreate"; 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>Add Product</b></label> <hr /> @using (Html.BeginForm("ProductCreate", "ADBLBranch", FormMethod.Post)) { <div class="row"> <div class="form-group col-md-6"> <label for="branchname"><strong>ProductName</strong></label> @Html.TextBoxFor(model => model.product_name, htmlAttributes: new { @class = "form-control", @id = "branchname" }) @Html.ValidationMessageFor(model => model.product_name, "", 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>
Save