你好,欢迎来到电脑编程技巧与维护杂志社! 杂志社简介广告服务读者反馈编程社区  
合订本订阅
 
 
您的位置:杂志经典 / 图形图象处理与游戏编程
基于asp.net环境下的电子商务网站的商品展示系统(八)
 

 dttable = DBcon.Excuteselect(strsql) ‘得到其下所有商品信息

                End If

            End If

        Next

        DataList1.DataSource = dttable.DefaultView

        DataList1.DataKeyField = "shopid"

        DataList1.DataBind()

    End Sub

 

    Protected Sub get_child(ByVal newtable As DataTable)

        For Each drrow As DataRow In newtable.Rows

            If drrow("havechild").ToString = "y" Then

                Dim childtable As DataTable = table1.Clone()

                For Each row As DataRow In table1.Rows

                    If row("parentid").ToString = drrow("catalogid").ToString Then

                        Dim newrow As DataRow = childtable.NewRow()

                        newrow.ItemArray = row.ItemArray

                        childtable.Rows.Add(newrow)

                    End If

                Next

                get_child(childtable)

            Else

                strsql = "select catalogs.*,shop.* from shop inner join catalogs on shop.catalogid=catalogs.catalogid where shop.catalogid=" & drrow("catalogid")

                If dttable.Rows.Count = 0 Then

                    dttable = DBcon.Excuteselect(strsql)

                Else

                    Dim childtable As DataTable = DBcon.Excuteselect(strsql)

                    For Each row As DataRow In childtable.Rows

                        Dim newrow As DataRow = dttable.NewRow()

                        newrow.ItemArray = row.ItemArray

                        dttable.Rows.Add(newrow)

                    Next

                End If

            End If

        Next

    End Sub

End class

5  结语

针对电子商务网站建设中着重介绍了商品多极分类的实现,这种方法灵活性较大,适用性较强,所有源代码均在xp+asp.net2.0环境下调试成功。本文的范例还可以扩展应用到其他管理信息系统之中,如:人事管理、部门设置。

  推荐精品文章

·2024年9月目录 
·2024年8月目录 
·2024年7月目录 
·2024年6月目录 
·2024年5月目录 
·2024年4月目录 
·2024年3月目录 
·2024年2月目录 
·2024年1月目录
·2023年12月目录
·2023年11月目录
·2023年10月目录
·2023年9月目录 
·2023年8月目录 

  联系方式
TEL:010-82561037
Fax: 010-82561614
QQ: 100164630
Mail:gaojian@comprg.com.cn

  友情链接
 
Copyright 2001-2010, www.comprg.com.cn, All Rights Reserved
京ICP备14022230号-1,电话/传真:010-82561037 82561614 ,Mail:gaojian@comprg.com.cn
地址:北京市海淀区远大路20号宝蓝大厦E座704,邮编:100089