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

📄 default.aspx

📁 AjaxMembership示例代码,Membership的使用方法
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/Index/MyMaster.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Index_Default" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <asp:GridView id="GridView1" runat="server" AutoGenerateColumns="False" BackColor="White"
        BorderColor="#3366CC" BorderStyle="None" BorderWidth="1px" CellPadding="4" DataSourceID="ObjectDataSource1">
        <footerstyle backcolor="#99CCCC" forecolor="#003399" />
        <columns>
<asp:BoundField DataField="ApplicationId" SortExpression="ApplicationId" HeaderText="ApplicationId"></asp:BoundField>
<asp:BoundField DataField="UserId" InsertVisible="False" SortExpression="UserId" HeaderText="UserId"></asp:BoundField>
<asp:BoundField DataField="UserName" SortExpression="UserName" HeaderText="UserName"></asp:BoundField>
<asp:BoundField DataField="MobileAlias" SortExpression="MobileAlias" HeaderText="MobileAlias"></asp:BoundField>
<asp:CheckBoxField DataField="IsAnonymous" SortExpression="IsAnonymous" HeaderText="IsAnonymous"></asp:CheckBoxField>
<asp:BoundField DataField="LastActivityDate" SortExpression="LastActivityDate" HeaderText="LastActivityDate"></asp:BoundField>
<asp:BoundField DataField="QQ" SortExpression="QQ" HeaderText="QQ"></asp:BoundField>
<asp:BoundField DataField="Msn" SortExpression="Msn" HeaderText="Msn"></asp:BoundField>
<asp:BoundField DataField="Password" SortExpression="Password" HeaderText="Password"></asp:BoundField>
<asp:BoundField DataField="PasswordAnswer" SortExpression="PasswordAnswer" HeaderText="PasswordAnswer"></asp:BoundField>
<asp:BoundField DataField="PasswordQuestion" SortExpression="PasswordQuestion" HeaderText="PasswordQuestion"></asp:BoundField>
</columns>
        <rowstyle backcolor="White" forecolor="#003399" />
        <selectedrowstyle backcolor="#009999" font-bold="True" forecolor="#CCFF99" />
        <pagerstyle backcolor="#99CCCC" forecolor="#003399" horizontalalign="Left" />
        <headerstyle backcolor="#003399" font-bold="True" forecolor="#CCCCFF" />
    </asp:GridView>
    <asp:ObjectDataSource id="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}"
        SelectMethod="GetData" TypeName="MyUsersTableAdapters.V_UsersAllInfoTableAdapter">
    </asp:ObjectDataSource>
</asp:Content>

⌨️ 快捷键说明

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