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
/
Gallery
/
Edit File Name :
DeleteGallery.cshtml
@model HRDC.Models.Gallery @{ ViewBag.Title = "Delete"; Layout = "~/Views/Shared/_AdminLayout.cshtml"; } <h2>Delete</h2> <h3>Are you sure you want to delete this?</h3> <div> <h4>Gallery</h4> <hr /> <dl class="dl-horizontal"> <dt> @Html.DisplayNameFor(model => model.ImageCaption) </dt> <dd> @Html.DisplayFor(model => model.ImageCaption) </dd> <dt> Image </dt> <dd> <img src="@Url.Content("~/Assets/Images/Gallery/"+Model.ImageURL)" height="150" width="150" /> </dd> </dl> @using (Html.BeginForm()) { @Html.AntiForgeryToken() <div class="form-actions no-color"> <input type="submit" value="Delete" class="btn btn-default" /> | @Html.ActionLink("Back to list", "Details", new { id = Model.AlbumID }) </div> } </div>
Save