毕业论文论文范文课程设计实践报告法律论文英语论文教学论文医学论文农学论文艺术论文行政论文管理论文计算机安全
您现在的位置: 毕业论文 >> 论文 >> 正文

ASP+SQL SERVER2000电子商城系统 第20页

更新时间:2007-10-19:  来源:毕业论文

    public SqlDataReader ProductDetail(int ID)
        {
            // Create Instance of Connection and Command Object
            SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["ESMS"]);
            SqlCommand myCommand = new SqlCommand("productDetail", myConnection);
 
            // Mark the Command as a SPROC
            myCommand.CommandType = CommandType.StoredProcedure;
 
            // Add Parameters to SPROC
            SqlParameter parameterID = new SqlParameter("@ID", SqlDbType.Int );
            parameterID.Value = ID;
            myCommand.Parameters.Add(parameterID);
            // Execute the command
            myConnection.Open();
            SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
           
            // Return the datareader
            return result;
       
        }
 
 
        public SqlDataReader ProductImage(int ID)
        {
            // Create Instance of Connection and Command Object
            SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["ESMS"]);
            SqlCommand myCommand = new SqlCommand("productImage", myConnection);
 
            // Mark the Command as a SPROC
            myCommand.CommandType = CommandType.StoredProcedure;
 
            // Add Parameters to SPROC
            SqlParameter parameterID = new SqlParameter("@ID", SqlDbType.Int );
            parameterID.Value = ID;
            myCommand.Parameters.Add(parameterID);
            // Execute the command
            myConnection.Open();
            SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
           
            // Return the datareader
            return result;
       
        }
 
 
6.2商城管理模块
6.2.1商城产品目录配置
a. 商城产品目录配置需求
 
配置产品目录,需要收集足够的产品类别信息,在该电子商城中,我们采用三层数级目录。
 
b. 商城产品目录配置模块设计

 << 上一页  [11] [12] [13] [14] [15] [16] [17] [18] [19] [20]  ... 下一页  >> 

ASP+SQL SERVER2000电子商城系统 第20页下载如图片无法显示或论文不完整,请联系qq752018766
设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©751com.cn 辣文论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。