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
/
mapqa
/
Views
/
ElmahErrorLog
/
Edit File Name :
_ErrorLogList.cshtml
@using PagedList.Mvc; @model PagedList.IPagedList<RER_Project.DataAccess.Functions.FnErrorLog> @{ int currentPage = Convert.ToInt32(Request.QueryString["page"].ToString()); } <div class="table table-responsive table-striped table-hover table-bordered"> <table class="table table-striped" id="traderListTable"> <thead> <tr> <th><center>SN</center></th> <th style="white-space:nowrap;">Host</th> <th>Type</th> <th>Source</th> <th style="white-space:nowrap;">Message</th> <th>Status Code</th> <th>Time</th> </tr> </thead> <tbody> @{ int serialNo = 1; } @foreach (var item in Model) { <tr> <td> <center> <label> @((currentPage - 1) * 10 + @serialNo)</label> @{ serialNo++; } </center> </td> <td>@item.host</td> <td>@item.type</td> <td>@item.source</td> <td>@item.message</td> <td>@item.statuscode</td> <td>@item.timeutc</td> </tr> } </tbody> </table> <div align="center"> @if (Model.Count > 0) { @Html.PagedListPager(Model, page => Url.Action("Index", new { page}), PagedListRenderOptions.ClassicPlusFirstAndLast) } </div> </div> <style> table td, th { border: 1px solid #e7eaec; } </style>
Save