userDel.aspx
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:1k
源码类别:
Email客户端
开发平台:
Visual C++
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="userDel.aspx.cs" Inherits="manage_sysUser_userDel" %>
- <!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>
- <link href="../../css/css.css" rel="stylesheet" type="text/css" />
- </head>
- <body class="txt">
- <form id="form1" runat="server">
- <div>
- <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Height="1px"
- OnRowDeleting="GridView1_RowDeleting" Width="507px">
- <Columns>
- <asp:BoundField DataField="id" HeaderText="ID" />
- <asp:BoundField DataField="name" HeaderText="用户名称" />
- <asp:BoundField DataField="password" HeaderText="用户密码" />
- <asp:BoundField DataField="addDate" HeaderText="创建日期" />
- <asp:CommandField ShowDeleteButton="True" />
- </Columns>
- </asp:GridView>
- </div>
- </form>
- </body>
- </html>