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
/
User
/
Edit File Name :
_roleList.cshtml
@using PagedList.Mvc; @model List<RER_Project.DataAccess.Functions.Fn_get_navigation_by_role> @using RER_Project.BusinessLayer.BusinessService <div class="hiding" id="hiding"> <div class="table-responsive" style="margin-top: 16px;"> <table class="footable table table-hover" data-page-size="10" data-filter=#filter> <thead> <tr> <th>Module</th> <th>Sub-Module</th> <th>Access</th> <th>Read</th> <th>Delete</th> <th>Edit</th> <th>Insert</th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td id="Id" hidden>@item.Id</td> <td id="main_module">@item.main_module</td> <td id="sub_module">@item.sub_module</td> <td><input type="checkbox" class="form-control clear chAccess" name="Access" id="Access" checked="@item.Access" /></td> @if (item.Access == true) { <td> <input type="checkbox" class="form-control clear" name="Read" id="Read" checked="@item.Read" /> </td> <td><input type="checkbox" class="form-control clear" name="Delete" id="Delete" checked="@item.Delete" /></td> <td><input type="checkbox" class="form-control clear" name="Edit" id="Edit" checked="@item.Edit" /></td> <td><input type="checkbox" class="form-control clear" name="Insert" id="Insert" checked="@item.Insert" /></td> } else { <td> <input type="checkbox" class="form-control clear" name="Read" id="Read" checked="@item.Read" disabled /> </td> <td><input type="checkbox" class="form-control clear" name="Delete" id="Delete" checked="@item.Delete" disabled /></td> <td><input type="checkbox" class="form-control clear" name="Edit" id="Edit" checked="@item.Edit" disabled /></td> <td><input type="checkbox" class="form-control clear" name="Insert" id="Insert" checked="@item.Insert" disabled /></td> } </tr> } </tbody> </table> </div> <div class="row"> <div class="col-lg-12"> <button class="btn btn-primary" id="save" onclick="SubmitRole()">Save</button> </div> </div> </div>
Save