温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:库存管理系统V1.0源码
当前文件:
StoreManage/manageCangku.aspx,打开代码结构图
StoreManage/manageCangku.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="manageCangku.aspx.cs" Inherits="manageCangku" %> 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="ckID" Visible="False" /> 39
<asp:BoundField DataField="ckbm" HeaderText="仓库编码" /> 40
<asp:BoundField DataField="Name" HeaderText="仓库名称" /> 41
<asp:HyperLinkField DataNavigateUrlFields="ckID" DataNavigateUrlFormatString="Editcangku.aspx?BID={0}" 42
HeaderText="更新" Text="更新" /> 43
<asp:TemplateField HeaderText="删除"> 44
<ItemTemplate> 45
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Delete" 46
Text="删除" onClientClick="return confirm('确定要删除吗?')" ></asp:LinkButton> 47
</ItemTemplate> 48
</asp:TemplateField> 49
</Columns> 50
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 51
<RowStyle BackColor="#EFF3FB" /> 52
<EditRowStyle BackColor="#2461BF" /> 53
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 54
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 55
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 56
<AlternatingRowStyle BackColor="White" /> 57
</asp:GridView> 58
</td> 59
</tr> 60
</table> 61
</form> 62
63
</body> 64
</html> 65
66



<!--

.STYLE1 
-->
