📄 logindetails.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/site.master" AutoEventWireup="true" CodeFile="LoginDetails.aspx.cs" Inherits="LoginDetails" title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" Runat="Server">
<asp:Panel ID="UsersRolesPanel" runat="server">
<table border="0">
<tr>
<td valign="top">
Select user<br />
<asp:DropDownList ID="UserList" runat="server"
AutoPostBack="True" OnSelectedIndexChanged="UserList_SelectedIndexChanged" />
</td>
<td valign="top">
Select Role<br />
<asp:DropDownList ID="RoleList" runat="server"
AutoPostBack="True" OnSelectedIndexChanged="RoleList_SelectedIndexChanged" />
</td>
</tr>
<tr>
<td valign="top">
Roles:<asp:GridView ID="RolesForUser" runat="server" />
</td>
<td valign="top">
Users:<asp:GridView ID="UsersInRole" runat="server" />
</td>
</tr>
</table>
</asp:Panel>
<p>
Passwords are the user name with @123 appended. Eg dave/dave@123.
</p>
<asp:Panel ID="MessagePanel" runat="server" Visible="false">
This page only available when the application is not running in Real mode.<br />
See the web.config file for more details on running modes.
</asp:Panel>
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -