UserStatue.aspx
资源名称:SunShine.rar [点击查看]
上传用户:tjxpgg
上传日期:2017-05-14
资源大小:2244k
文件大小:2k
源码类别:
SilverLight
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserStatue.aspx.cs" Inherits="UserStatue" %>
- <!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>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="id"
- OnRowDeleting="GridView1_RowDeleting" CellPadding="4" GridLines="Horizontal" BackColor="White" BorderColor="#336666" BorderStyle="Double" BorderWidth="0px">
- <Columns>
- <asp:BoundField DataField="loginid" HeaderText="用户名" />
- <asp:BoundField DataField="name" HeaderText="姓名" />
- <asp:BoundField DataField="Address" HeaderText="地址" />
- <asp:BoundField DataField="Mail" HeaderText="邮箱" />
- <asp:CommandField DeleteText="<div onclick="return confirm('是否确认删除?')">删除</div>"
- ShowDeleteButton="True" />
- <asp:TemplateField HeaderText="xianxi">
- <ItemTemplate>
- <a href='<%# "Admin_UserXianxi.aspx?id="+Eval("id") %>'>详细资料</a>
- </ItemTemplate>
- </asp:TemplateField>
- </Columns>
- <FooterStyle BackColor="White" ForeColor="#333333" />
- <RowStyle BackColor="White" ForeColor="#333333" />
- <SelectedRowStyle BackColor="#339966" Font-Bold="True" ForeColor="White" />
- <PagerStyle BackColor="#336666" ForeColor="White" HorizontalAlign="Center" />
- <HeaderStyle BackColor="#336666" Font-Bold="True" ForeColor="White" />
- </asp:GridView>
- </div>
- </form>
- </body>
- </html>