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
/
User
/
View File Name :
ExportDetailToExcel.cshtml
@model List<RER_Project.DataAccess.ViewModels.User.UserDetailView> @{ ViewBag.Title = "User Export"; Layout = null; } <style> th, td { padding: 5px; text-align: left; } </style> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12"> <div class="box-holder clearfix"> <div class="title"> <h2></h2> </div> <div class="col-sm-12"> <div class="row"> @Html.Raw(ViewBag.header) </div> </div> </div> </div> </div> <table style="width:100%"> <tr> <th>SN</th> <th>Email/Username</th> <th>Full Name</th> <th>Mobile No</th> <th>Role</th> </tr> @{ int i = 0;} @foreach (var obj in Model) { <tr> <td>@{i = i + 1;}@i</td> <td>@obj.Email</td> <td>@obj.UserName</td> <td>@obj.MobileNo</td> <td>@obj.RoleName</td> </tr> } </table>