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
/
GroupMembers
/
View File Name :
_memberlist.cshtml
@model RER_Project.DataAccess.ViewModels.Groups.MemberList @using RER_Project.BusinessLayer.BusinessService @using RER_Project.Core.Helpers @{ var meta = AppUserService.GetCurrent(); } <div class="row"> <div class="col-lg-12"> <div class="pull-left"> <strong>Total Member : @(Model.memberlists.Count > 0 ? Model.memberlists[0].totalcount : 0) </strong> </div> </div> <div class="table table-responsive table-striped table-hover table-bordered" style="overflow-x: auto; white-space: nowrap; "> <table class="table table-striped" id="groupListTable"> <thead> <tr> <th>National Id</th> <th>IFF Info</th> <th>Farmer Name</th> <th>Commodity</th> <th>Province</th> <th>Atoll</th> <th>Island</th> <th>Gender</th> <th>Age</th> <th>Contact Number</th> <th>Is Active</th> </tr> </thead> <tbody> @foreach (var item in Model.memberlists) { <tr> <td> @item.nationality_no </td> <td>@item.groupname</td> <td>@item.membername</td> <td> @item.commoditytypename </td> <td>@item.states</td> <td>@item.district_name</td> <td>@item.municipality_name</td> <td>@item.gender_name</td> <td> @item.age </td> <td> @item.contact_no </td> <td> @item.is_active </td> </tr> } </tbody> </table> <div align="center"> <center> <div class="pagination" id="pagination_active"> @if (Model.PagerHelper.CurrentPage > 1) { <button class="btn btn-primary" value="@(Model.PagerHelper.CurrentPage-1)" id="@(Model.PagerHelper.CurrentPage-1)" onclick="callSearchPagination(@(Model.PagerHelper.CurrentPage-1))">Prev </button> } @for (long i = Model.PagerHelper.StartPage; i < (Model.PagerHelper.EndPage + 1); i++) { <button class="btn @(Model.PagerHelper.CurrentPage == i ? "btn-primary active" : "")" value="@i" id="@i" onclick="callSearchPagination(@i)">@i</button> } @if (Model.PagerHelper.CurrentPage < Model.PagerHelper.TotalPages) { <button class="btn btn-primary" value="@(Model.PagerHelper.CurrentPage+1)" id="@(Model.PagerHelper.CurrentPage+1)" onclick="callSearchPagination(@(Model.PagerHelper.CurrentPage+1))">Next</button> } </div> </center> </div> </div> </div>