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
/
View File Name :
DownloadDetail.cshtml
@model IEnumerable<HRDC.Models.DownloadDetail> @{ ViewBag.Title = "HRDC-HOSPITAL & REHABILITATION for DISABLED CHILDREN"; Layout = "~/Views/Shared/DetailLayout.cshtml"; } <div class="paragraph-block bottom-margin"> <h3>@Model.FirstOrDefault().DownloadCategory.DownloadCategory1</h3> <table class="custom-table-properties"> <thead> <tr> <th></th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td> <hr /> <div class="row"> <b>@item.DownloadTitle</b> <a href="~/Downloads/FileDownload?file=@item.DownloadLink" class="fa fa-download"></a> | <a href="@Url.Content("~/Assets/Images/Downloads/"+@item.DownloadLink)" target="_blank" class="fa fa-eye"></a> </div> </td> </tr> } </tbody> </table> </div>