⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 passwordchange.aspx

📁 c#做的一个图书管理系统
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="passwordchange.aspx.cs" Inherits="manager_Default" Title="管理员" %>


<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <table style="width:100%; border-right: red thin solid; border-top: red thin solid; border-left: red thin solid; border-bottom: red thin solid;" height="320">
        <tr>
            <td style="height: 42px; width: 30%;border-right: red thin solid;" colspan="3" align="center">
                &nbsp;<asp:LoginView ID="LoginView1" runat="server">
                    <RoleGroups>
                        <asp:RoleGroup>
                        </asp:RoleGroup>
                    </RoleGroups>
                    <LoggedInTemplate>
                        欢迎回来:
                    </LoggedInTemplate>
                </asp:LoginView>
                <asp:LoginName ID="LoginName1" runat="server" Style="color: green; font-family: 隶书" />
            </td>
                 <td width=70% rowspan="3" align=center valign=middle>
                                      <asp:ChangePassword ID="ChangePassword1" runat="server" BackColor="#F7F6F3" BorderColor="#E6E2D8" BorderPadding="4" BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" Height="248px" Width="441px" ContinueButtonText="确定" OnContinueButtonClick="ChangePassword1_ContinueButtonClick">
                         <CancelButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid"
                             BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284775" />
                         <InstructionTextStyle Font-Italic="True" ForeColor="Black" />
                         <PasswordHintStyle Font-Italic="True" ForeColor="#888888" />
                         <ChangePasswordButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid"
                             BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284775" />
                         <ContinueButtonStyle BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid"
                             BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284775" />
                         <TitleTextStyle BackColor="#5D7B9D" Font-Bold="True" Font-Size="0.9em" ForeColor="White" />
                         <TextBoxStyle Font-Size="0.8em" />
                     </asp:ChangePassword>
                 </td>
        </tr>
        <tr>
            <td style="height: 334px; width:30%;border-right: red thin solid;" colspan="3" align="center">
                <asp:BulletedList ID="BulletedList1" runat="server" DataSourceID="SqlDataSource1"
                    DataTextField="mname" DataValueField="mname" DisplayMode="LinkButton" Height="300px"
                    Style="vertical-align: middle; direction: ltr; text-indent: 5pt; line-height: 35pt;
                    font-family: 隶书; text-align: center" Width="135px" OnClick="BulletedList1_Click">
                </asp:BulletedList>

            </td>   
            
        </tr>
        <tr>
            <td style="height: 48px; width: 30%;border-right: red thin solid;" align="center" colspan="3">
                <asp:LoginStatus ID="LoginStatus1" runat="server" Font-Size="Large" Style="font-family: 隶书" OnLoggingOut="LoginStatus1_LoggingOut" />
            </td>
        </tr>
    </table>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=.;Initial Catalog=library;User ID=sa"
    ProviderName="System.Data.SqlClient" SelectCommand="SELECT [mname] FROM [menu] WHERE ([mkid] = @mkid)">
    <SelectParameters>
        <asp:Parameter DefaultValue="管理员" Name="mkid" Type="String" />
    </SelectParameters>
</asp:SqlDataSource>
</asp:Content>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -