📄 cusmodify.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="cusmodify.aspx.cs" Inherits="cusmodify" %>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style type="text/css">
<!--
body,td,th {
font-size: 12px;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: underline;
color: #FF0000;
}
a:active {
text-decoration: none;
}
-->
</style></head>
<body>
<form id="form1" runat="server">
<div>商家修改
<table width="600px" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center">序号</td>
<td align="center">商家名称</td>
<td align="center">注册时间</td>
<td height="30" align="center">操作</td>
</tr>
<asp:Repeater ID="cusmodi" runat="server">
<ItemTemplate>
<tr>
<td align="center"><%#DataBinder.Eval(Container.DataItem,"u_id") %></td>
<td><%#DataBinder.Eval(Container.DataItem,"u_name") %></td>
<td height="25" align="center"><%#DataBinder.Eval(Container.DataItem,"u_date") %></td>
<td align="center"><a href="cusgai.aspx?id=<%#Eval("u_id") %>">编辑</a>
<asp:LinkButton ID="LinkButton1" CommandName='<%#Eval("u_id") %>' OnCommand="DelComm_Click" onclientclick="return confirm('确定要删除吗?');" runat="server">删除</asp:LinkButton></td>
</tr>
</ItemTemplate>
</asp:Repeater>
</table>
<table border="0" align="center" cellspacing="0">
<tr>
<td align="center"><asp:LinkButton ID="lbtnFirstPage" runat="server" OnClick="lbtnFirstPage_Click">首页</asp:LinkButton>
<asp:LinkButton ID="lbtnpritPage" runat="server" OnClick="lbtnpritPage_Click">上一页</asp:LinkButton>
<asp:LinkButton ID="lbtnNextPage" runat="server" OnClick="lbtnNextPage_Click">下一页</asp:LinkButton>
<asp:LinkButton ID="lbtnDownPage" runat="server" OnClick="lbtnDownPage_Click">尾页</asp:LinkButton>
第
<asp:Label ID="labPage" runat="server" Text="Label"></asp:Label>
页/共
<asp:Label ID="LabCountPage" runat="server" Text="Label"></asp:Label>
页 </td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -