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
/
Home
/
Edit File Name :
EarthquakeResponseList.cshtml
@model IEnumerable<HRDC.Models.EarthquakeResponse> @{ ViewBag.Title = "HRDC-HOSPITAL & REHABILITATION for DISABLED CHILDREN"; Layout = "~/Views/Shared/DetailLayout.cshtml"; } <!--<img src='https://www.hrdcnepal.org/img/logo.png'/>--> <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.ResponseTitle</h4> <div class="row"> <div class="col-sm-5 col-xs-12"> <div class="img-list-wrap"> <img src="~/Assets/Images/EarthquakeResponses/@item.ResponseImage" alt=""> </div> </div> <div class="col-sm-7 col-xs-12"> <p>@item.ResponseDescription</p> @Html.ActionLink("Read More", "EarthquakeResponseDetail", new { id = item.URLTitle }, new { @class = "btn btn-blue" }) </div> </div> </td> </tr> } </tbody> </table> </div>
Save