温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:淘淘网电子商务网站源码(毕业设计)
当前文件:
TaoTaoBiz/Customer/MyBookGoods.aspx,打开代码结构图
TaoTaoBiz/Customer/MyBookGoods.aspx,打开代码结构图1<%@ Page language="c#" Codebehind="MyBookGoods.aspx.cs" AutoEventWireup="True" Inherits="web.Customer.MyBookGoods" %> 2
<%@ Register TagPrefix="uc1" TagName="head" Src="../Index/head.ascx" %> 3
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 4
<HTML> 5
<HEAD> 6
<title>MyBookGoods</title> 7
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> 8
<meta name="CODE_LANGUAGE" Content="C#"> 9
<meta name="vs_defaultClientScript" content="JavaScript"> 10
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> 11
</HEAD> 12
<body style="MARGIN-TOP:0px" MS_POSITIONING="GridLayout"> 13
<form id="Form1" method="post" runat="server"> 14
<uc1:head id="Head1" runat="server"></uc1:head> 15
<div id="mybuy" align="center"> 16
<table width="760" cellpadding="0" cellspacing="0" border="0"> 17
<tr> 18
<td><FONT color="#ff0000">我的订单</FONT></td> 19
</tr> 20
<tr> 21
<td valign="top"> 22
<asp:DataGrid id="DataGrid1" runat="server" AutoGenerateColumns="False" Width="760px"> 23
<HeaderStyle BackColor="#E0E0E0"></HeaderStyle> 24
<Columns> 25
<asp:HyperLinkColumn Target="_blank" DataNavigateUrlField="GoodsId" DataNavigateUrlFormatString="../Products/ProductDetail.aspx?GoodsId={0}" 26
DataTextField="GoodsName" HeaderText="定购商品"> 27
<HeaderStyle Width="260px"></HeaderStyle> 28
</asp:HyperLinkColumn> 29
<asp:BoundColumn DataField="Number" HeaderText="定购数量"> 30
<HeaderStyle Width="80px"></HeaderStyle> 31
</asp:BoundColumn> 32
<asp:BoundColumn DataField="SaleDate" HeaderText="定购时间"> 33
<HeaderStyle Width="180px"></HeaderStyle> 34
</asp:BoundColumn> 35
<asp:BoundColumn DataField="TotalPrice" HeaderText="总额"> 36
<HeaderStyle Width="160px"></HeaderStyle> 37
</asp:BoundColumn> 38
<asp:BoundColumn DataField="IsDeal" HeaderText="处理情况"> 39
<HeaderStyle Width="80px"></HeaderStyle> 40
</asp:BoundColumn> 41
</Columns> 42
</asp:DataGrid></td> 43
</tr> 44
</table> 45
</div> 46
</form> 47
</body> 48
</HTML> 49




