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
/
HRDC
/
HRDC
/
Views
/
Downloads
/
Edit File Name :
Edit.cshtml
@model HRDC.Models.DownloadCategory @{ ViewBag.Title = "Edit"; Layout = "~/Views/Shared/_AdminLayout.cshtml"; } @using (Html.BeginForm("Edit", "Downloads")) { @Html.AntiForgeryToken() @Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => model.DownloadCategoryID) <div class="row"> <div class="col-xs-12"> <div class="panel panel-primary"> <div class="panel-heading"> Update Gallery Album </div> <div class="panel-body"> <div class="form-group"> @Html.LabelFor(model => model.DownloadCategory1) @Html.EditorFor(model => model.DownloadCategory1, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DownloadCategory1, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.Remarks) @Html.EditorFor(model => model.Remarks, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Remarks, "", new { @class = "text-danger" }) </div> <input type="submit" value="Create" class="btn btn-info" /> </div> </div> </div> </div> } <div> @Html.ActionLink("Back to List", "Index") </div>
Save