1.ProductCar.aspx页面代码
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ProductCar.aspx.cs" Inherits="BuyProduct" %>
<!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>
</head>
<body>
<form id="form1" runat="server">
<div align="left">
<table align="left" border="0" cellpadding="0" cellspacing="0" style="width: 699px; height: 386px;">
<tr>
<td style="width: 831px; height: 21px;">
购物车:</td>
</tr>
<tr>
<td align="center" style="height: 229px">
<asp:DataList ID="dlstBuyProductList" runat="server" Height="210px" Width="684px">
<ItemTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="width: 700px">
<tr>
<td style="width: 72px">
<asp:CheckBox ID="chbSelect" runat="server" Text="选择" /></td>
<td style="width: 70px">
<asp:Label ID="lblProductName" runat="server" Text='<%# Eval("ProName") %>' Width="85px"></asp:Label></td>
<td style="width: 91px">
<asp:Label ID="lblSalePrice" runat="server" Text='<%# Eval("SalePrice","{0:c}") %>'></asp:Label></td>
<td style="width: 89px">
<asp:Label ID="lblAbotePrice" runat="server" Text='<%# Eval("AbotePrice","{0:c}") %>'></asp:Label></td>
<td style="width: 62px">
<asp:TextBox ID="txtSum" runat="server" onkeypress="checkNum()" Width="41px" Text='<%# Eval("ProdCount") %>'></asp:TextBox></td>
<td style="width: 100px"><%# Eval("TotalPrice","{0:c}") %>
</td>
<td style="width: 86px"><%# Eval("TotalPrices","{0:c}") %>
</td>
</tr>
</table>
</ItemTemplate>
<HeaderTemplate>

这个博客展示了如何使用C#实现购物车功能,包括在ASP.NET页面`ProductCar.aspx`上的代码展示,涉及到`session`存储购物车数据,以及`dataset`、`textbox`、`button`等元素在用户交互和数据展示中的应用。用户可以添加、更新购物车商品,进行结算操作。
最低0.47元/天 解锁文章
659

被折叠的 条评论
为什么被折叠?



