首页 > 编程 > .NET > 正文

ASP.NET开发电子商务网站购物车

2024-07-10 13:11:37
字体:
来源:转载
供稿:网友
  web应用程序开发中,大多数的电子商务网站都有网上购物这一功能模块,所以购物车程序的编写就显得非常重要。

  购物车的作用不外就是实现这些功能:添加物件、修改物件、删除物件、检查推车、查看推车等。在本文就讲解“添加物件”、“删除物件”和“查看推车”这三个功能。当然,这里只不过是一个简单的购物车类,完成的功能也不多,还不够完善,需要大家在这个基础做扩展使它的功能更加完善。

  c#是一种完全的oop(object oriented programming)语言,也是微软的主打语言,也可以说是未来的几个流行语言之一。本文的示例代码使用c#编写。以下是创建一个购物车类,它完成添加物件、删除物件和查看购物车物件这些功能,文件名shoppingcart.cs:

using system;
using system.web.ui;
using system.collections; //使用hashtable类必须引入该命名空间

namespace wendwcart //命名空间名称
{
 [serializable]
 public class stat_class{ //定义商品类,保存商品的各种属性
  string shangpinid; //商品id
  string sp_name; //商品名称
  decimal sp_price; //商品价格
  int sp_quan; //商品数量
  public string itemid{
   get{return shangpinid;}
   set{shangpinid=value;}
  }

  public string shangpinname{
   get{return sp_name;}
   set{sp_name=value;}
  }

  public decimal price{
   get{return sp_price;}
   set{sp_price=value;}
  }

  public int quantity{
   get{return sp_quan;}
   set{sp_quan=value;}
  }

  public stat_class(string itemid,string shangpinname,decimal price,int quantity){ //构造方法,初始化商品的各个属性

   shangpinid=itemid;
   sp_name=shangpinname;
   sp_price=price;
   sp_quan=quantity;
  }
 }

 [serializable]
 public class shoppingcart{
  hashtable cart_orders=new hashtable();
  public icollection orders{
   get{return cart_orders.values;}
  }

  public decimal totalcost{ //计算总价格
  get{
   decimal total=0;
   foreach(dictionaryentry entry in cart_orders){
    stat_class order=(stat_class)entry.value;
    total+=(order.price*order.quantity);
   }
   return total;
  }
 }

 public void additem(stat_class order){ //添加物件方法
  stat_class order=( stat_class)cart_orders[order.itemid];
  if(order!=null)
   order.quantity+=order.quantity;
  else
   cart_orders.add(order.itemid,order);
 }

 public void deleteitem (string itemid){ //删除物件
  if(cart_orders[itemid]!=null)
   cart_orders.remove(itemid);
 }
}
}


  编译shoppingcart.cs文件:

csc /t:library /out: shoppingcart.dll shoppingcart.cs

  部署shoppingcart.dll组件到bin目录下。

  说明:

  为了保证不管使用什么样的会话模式都能够有效的保存会话状态,在定义类的前面加上了serializable序列化。另外,为了使每个用户登录时都能创建一个类的实例,在global.asax文件里加上:

<%@ import namespace="wendwcart" %>
<%@ application codebehind="global.asax.cs" inherits="hdlab.bbs.global" %>
<script language="c#" runat="server">

void session_start()
{
 session["myshoppingcart"]=new shoppingcart();
}
</script>


  其中wendwcart是控件的命名空间名称。 在下一篇《购物推车程序开发——调用购物车类》中将讲解如何在asp.net页面中应用shoppingcart.dll组件来添加、删除物件。中国最大的web开发资源网站及技术社区,
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表