logindetails.aspx

来自「ASP.NET2.0(C#篇)经典教程的源码...本源码很好的实现了购物车...」· ASPX 代码 · 共 41 行

ASPX
41
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?