订购信息
在ST_kshowproaspx中设有加入购物车超链接用来为用户提供网上订购的服务单击该超链接将进入ST_userorderproaspx页面如图所示
图 订购信息页面
ST_userorderproaspx的主要HTML代码
此处用到的都是一些简单的Web控件页面中的GridView控件也与前面的大同小异ST_userorderpro aspx的主要HTML代码如程序所示
程序 ST_userorderproaspx
<form id=Form method=post runat=server>
<!头控件>
<uc:ST_khead id=Khead runat=server></uc:ST_khead>
<table width= border= align=center cellpadding=
cellspacing= bgcolor=#ffffff>
<tr bgcolor=#>
<td height= colspan= valign=top>
<table width=% height= border=
cellpadding= cellspacing=><tr><td
background=images/topbannerjpg> </td></tr>
</table>
</td>
</tr>
<tr>
<td width= align=center valign=top>
<uc:ST_kuserleft id=Kuserleft
runat=server></uc:ST_kuserleft>
</td>
<td colspan= valign=top>
<table width= height= border= cellpadding=
cellspacing= bgcolor=#>
<tr>
<td height= bgcolor=#cc><strong><font
color=#ffffff>::产品信息</font></strong></td>
</tr>
<tr>
<td bgcolor=#ffffff><table width= border=
cellspacing= cellpadding=>
<tr>
<td><table width= border= cellspacing=
cellpadding= style=WIDTH: px; HEIGHT: px>
<tr>
<td colspan= align=center><strong><font color=#cc>
订购信息</font></strong></td></tr>
<tr><td width= align=right>产品名称</td>
<td width=> <asp:Label id=Label
runat=server>Label</asp:Label></td></tr>
<tr>
<td align=right>订购数量</td>
<td> <asp:TextBox id=TextBox runat=server
Width=px></asp:TextBox><FONT face=宋体>件</FONT></td></tr>
<tr>
<td align=right>订购价格</td>
<td><asp:Label id=Label runat=server>Label</asp:Label>元
/件</td></tr>
<tr><td align=right> </td><td> </td></tr></table>
</td></tr>
<tr><td>
<!GridView控件>
<asp:GridView id=GridView runat=server
AutoGenerateColumns=False Width=px>
<Columns>
<asp:TemplateField>
<ItemTemplate>
<table width=% border= cellspacing=
cellpadding=>
<tr>
<td height= colspan=
align=center><strong><font color=#cc>用户信息
</font></strong></td></tr>
<tr>
<td width= align=right>真实姓名
</td>
<td width=><%#
Eval(ST_username)%></td>
</tr>
<tr>
<td align=right>联系电话</td>
<td><%# Eval(ST_usertel)%></td>
</tr>
<tr>
<td align=right>联系地址</td>
<td><%# Eval(ST_useraddr)%></td>
</tr>
<tr>
<td colspan=>请确认您上述信息的正确性否则
可能出现您无法收到物品的情况!如果上述有错误请点击<a
href=ST_userinfoeditaspx><strong><font color=#cc>此处
</font></strong></a>修改</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</td></tr>
<tr><td align=center>
<asp:Button id=Button runat=server Width=px Text=
提交订单 onclick=Button_Click>
</asp:Button></td></tr></table></td></tr></table>
</td></tr>
</table>
<uc:ST_kfoot id=Kfoot runat=server></uc:ST_kfoot>
</form >
【代码说明】在此也是先添加了一个头控件最后添加了一个尾控件代码第~行是一个GridView控件绑定了需要购买的物品
[] []