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
/
SuccessStories
/
View File Name :
Index.cshtml
@model IEnumerable<HRDC.Models.SuccessStory> @{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_AdminLayout.cshtml"; } <h1 class="page-head-line">List of Success Stories</h1> <div class="row"> <div class="col-md-12"> <div class="panel panel-default"> <div class="panel-heading"> @Html.ActionLink("Create New", "Create") </div> <div class="panel-body"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover custom-table-properties"> <thead> <tr> <th> @Html.DisplayNameFor(model => model.SuccessStoryTitle) </th> <th> @Html.DisplayNameFor(model => model.SuccessStoryDescription) </th> <th> Image </th> <th></th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td> @Html.DisplayFor(modelItem => item.SuccessStoryTitle) </td> <td> @Html.DisplayFor(modelItem => item.SuccessStoryDescription) </td> <td> <img src="@Url.Content("~/Assets/Images/SuccessStories/"+item.SuccessStoryImage)" height="50" width="50" /> </td> <td> @Html.ActionLink("Edit", "Edit", new { id = item.SuccessStoryID }) | @Html.ActionLink("Details", "Details", new { id = item.SuccessStoryID }) | @Html.ActionLink("Delete", "Delete", new { id = item.SuccessStoryID }) </td> </tr> } </tbody> </table> </div> </div> </div> </div> </div>