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

📄 member_list.aspx

📁 一个简单的聊天代码
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="member_list.aspx.cs" Inherits="member_list" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
     <style type="text/css">
<!--
table {
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}
body {
	margin-top: 20px;
}
th {
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
-->
    </style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
    <form id="form1" runat="server">
    <div align="center">
       <asp:GridView ID="GridView1"  OnPageIndexChanging="GridView1_PageIndexChanging" 
        runat="server"  AllowPaging="True" PageSize="8"  Width="600px" AutoGenerateColumns="False" HorizontalAlign="Center" CellPadding="4" ForeColor="#333333" GridLines="None" >
            <Columns>
                <asp:HyperLinkField DataNavigateUrlFormatString="member_change_list.aspx?id={0}"
                    HeaderText="修改" Text="修改" DataNavigateUrlFields="id" />
                <asp:BoundField ApplyFormatInEditMode="True" DataField="id" HeaderText="序号" />
                <asp:BoundField DataField="usertext" HeaderText="帐号" />
                <asp:BoundField DataField="Truename" HeaderText="真实姓名" />
                <asp:BoundField DataField="Job" HeaderText=" 工作" />
                <asp:HyperLinkField DataNavigateUrlFields="id" DataNavigateUrlFormatString="member_list.aspx?id={0}"
                    HeaderText="删除" Text="删除" />
                <asp:BoundField DataField="sx" HeaderText="等级" />
                            </Columns>
            <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            <SelectedRowStyle BackColor="#D1DDF1" ForeColor="#333333" Font-Bold="True" />
            <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
            <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            <AlternatingRowStyle BackColor="White" />
           <RowStyle BackColor="#EFF3FB" />
           <EditRowStyle BackColor="#2461BF" />
        </asp:GridView>
        &nbsp;</div>
    </form>
</body>
</html>

⌨️ 快捷键说明

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