温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:库存管理系统V1.0源码
当前文件:
StoreManage/managePeople.aspx,打开代码结构图
StoreManage/managePeople.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="managePeople.aspx.cs" Inherits="managePeople" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head id="Head1" runat="server"> 7
<title>--------</title> 8
<link href="style.css" rel="stylesheet" type="text/css" /> 9
<style type="text/css"> 10
<!-- 11
.STYLE1 {color: #FF0000} 12
body,td,th { 13
font-size: 9pt; 14
} 15
body { 16
margin-left: 0px; 17
margin-right: 0px; 18
margin-bottom: 0px; 19
margin-top: 0px; 20
} 21
--> 22
</style> 23
</head> 24
25
<body> 26
<form id="form2" name="form1" method="post" runat="server" action=""> 27
<table width="60%" border="1" align="center" cellpadding="5" cellspacing="1" bgcolor="#CCCCCC"> 28
<tr> 29
<td height="10" bgcolor="#ECFFEC" style="width: 59%"><div align="center"><strong>经办人管理</strong></div></td> 30
</tr> 31
</table> 32
<table width="60%" border="1" align="center" cellpadding="5" cellspacing="0"> 33
<tr> 34
<td style="width: 100%; height: 10px;" align="center"><asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 35
OnPageIndexChanging="GridView1_PageIndexChanging1" OnRowDeleting="GridView1_RowDeleting" Width="100%" CellPadding="4" 36
ForeColor="#333333" PageSize="8" HorizontalAlign="Left" AllowPaging="True"> 37
<Columns> 38
<asp:BoundField DataField="userID" Visible="False" /> 39
<asp:BoundField DataField="bianma" HeaderText="经办人编码" /> 40
<asp:BoundField DataField="Name" HeaderText="经办人名称" /> 41
<asp:BoundField DataField="tel" HeaderText="经办人电话" /> 42
<asp:HyperLinkField DataNavigateUrlFields="userID" DataNavigateUrlFormatString="EditPeople.aspx?BID={0}" 43
HeaderText="更新" Text="更新" /> 44
<asp:TemplateField HeaderText="删除"> 45
<ItemTemplate> 46
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Delete" 47
Text="删除" onClientClick="return confirm('确定要删除吗?')" ></asp:LinkButton> 48
</ItemTemplate> 49
</asp:TemplateField> 50
</Columns> 51
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 52
<RowStyle BackColor="#EFF3FB" /> 53
<EditRowStyle BackColor="#2461BF" /> 54
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 55
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 56
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 57
<AlternatingRowStyle BackColor="White" /> 58
</asp:GridView> 59
</td> 60
</tr> 61
</table> 62
</form> 63
64
</body> 65
</html> 66
67
68



<!--

.STYLE1 
-->
