freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于net的購物商城畢業(yè)論文-資料下載頁

2025-07-02 12:53本頁面

【導(dǎo)讀】得的研究成果,屬于本人的原創(chuàng)。在本文中引用的地方已經(jīng)在文中標(biāo)明和致謝,做出的任何貢獻(xiàn)均已在論文(設(shè)計)中作了明確的說明并表示了謝意。畢業(yè)論文(設(shè)計)被查閱和借閱。本人論文(設(shè)計)中有原創(chuàng)性數(shù)據(jù)需要保密的部分為:。當(dāng)今網(wǎng)絡(luò)科學(xué)技術(shù)的快速發(fā)展,人們的日常生活和電子商務(wù)的關(guān)系日益緊密。此同時科技的快速發(fā)展也表明我們的生活方式也要發(fā)生改變。在線購物系統(tǒng)極大的方便了人們的生活,使人們能夠在繁忙之中完成購物。網(wǎng)站,可以實現(xiàn)購買商品,下訂單,刪除訂單,評價商品等操作。多書本上不能學(xué)到的知識,收獲頗多。

  

【正文】 PAUL NIELSEN(美)著, 《 MICROSOFT SQL SERVER 20xx 寶典 》 [M]. 北京 :中國鐵道出版社 , 20xx:6078. [5] 盧瀟、孫璐、劉娟等著,《軟件工程》 [M]. 北京 :清華大學(xué)出版社, 20xx:7090. [6] 馬俊主編,《 C網(wǎng)絡(luò)應(yīng)用編程基礎(chǔ)》 [M]. 北京 :人民郵電出版社, 20xx:4060. [7] 劉強 著,《清華大學(xué)計算機系網(wǎng)絡(luò)課程 軟件工程》 [M]. 北京 :清華大學(xué)出版社 ,20xx:3054. [8] 張躍廷、王小科、許文武等著,《 數(shù)據(jù)庫系統(tǒng)開發(fā)案例精選》 [J]. 北京 :人民郵電出版社 20xx:4056. [9] 鄺孔武、王曉敏等 著 ,《信息系統(tǒng)分析與設(shè)計 (第三版 )》 [M]. 北京 :清華大學(xué)出版社 ,20xx:5968. [10] 劉彥舫、褚建立 等著 ,《電子商務(wù)概論》 [M]. 西安 :西安 電子 工業(yè)出版社 ,20xx:7890. 29 致 謝 在此要特別 感謝我的指導(dǎo)老師王亞老師,畢業(yè)設(shè)計的初期 我遇到了一些難題,當(dāng)時不知道怎么辦,就向老師請求幫助,王老師認(rèn)真的幫我分析了情況,教我如何解決問題,和老師聊完后,我就按照老師的方法去試,最終找到了辦法,順利的解決了問題。 王老師從選題、設(shè)計到論文框架的修改,都給予了細(xì)致的指導(dǎo),在 做畢業(yè)設(shè)計的過程中,王老師經(jīng)常問我們做畢業(yè)設(shè)計的事情, 說 遇到了 什么不懂就 可以去問她。 在這里 我還要感謝我的女朋友,因為做畢業(yè)論文沒有太多時間陪她,她一直支持我 ,沒有抱怨不能 多留時間陪她。感謝你們 對我的 支持與 幫助 。 30 附 錄 部分模塊源代碼如下 : 商品支付模塊的部分代碼如下 : protected void Buttsubmit_Click(object sender, EventArgs e)//提交訂單 { using (SqlConnection conn = new SqlConnection(conString)) { string EvaluationStatus = 未評價 。 string ReceiveID = 。 int flag = 0。//收貨人選中標(biāo)志 for (int i = 0。 i 。 i++) { RadioButton RB =[i].Cells[0].FindControl(Radio)as RadioButton。 if ( == true) { flag = 1。 HttpCookie tempCookie = new HttpCookie(newOrderInfo)。 //創(chuàng)建 Cookie實例, Cookies名稱為 Login,實例只是一個容器,真正 //使用的是 Cookie名稱 ReceiveID= tempCookie[ReceiveID] = [i].Cells[1].Text。 tempCookie[Receiver] = [i].Cells[2].Text。 //獲取數(shù)據(jù) tempCookie[WhereAddress] = [i].Cells[3].Text。 //獲取數(shù)據(jù) 31 tempCookie[DetaileAddress] = [i].Cells[4].Text。 tempCookie[PhoneNumber] = [i].Cells[5].Text。 //獲取數(shù)據(jù) tempCookie[TheMailbox] = [i].Cells[6].Text。 (tempCookie)。 } } if (flag == 1){ OrderStatus = 已支付 。 //插入訂單信息 UserName = [UserName].ToString().Trim()。 string sqlInsertOrder = insert into tb_OrderInfo(ProductID,UserName,ReceiveID,Number,Price,TotalPricOrderStatus,EvaluationStatus) + values(@ProductID,@UserName,@ReceiveID,@Number,@Price,@TotalPrice,@OrderStatus,@EvaluationStatus)。 SqlParameter[] pms1 = new SqlParameter[] { new SqlParameter(@ProductID,ProductID), new SqlParameter(@UserName,UserName) , new SqlParameter(@ReceiveID,ReceiveID) , new SqlParameter(@Number,Number), new SqlParameter(@Price,Price), new SqlParameter(@TotalPrice,TotalPrice), new SqlParameter(@OrderStatus,OrderStatus), new SqlParameter(@EvaluationStatus,EvaluationStatus), }。 32 (sqlInsertOrder, pms1)。 ()。 //需要修改數(shù)據(jù)庫尚品的庫存量 int fail = 0。//標(biāo)示是否對商品庫存量更新成功 if (Stock Number) { ()。 Stock = Stock Number。 string sql2 = update tb_ProductInfo set Stock=@Stock + where ProductID=@ProductID。 SqlParameter[] pms2 = new SqlParameter[] { new SqlParameter(@ProductID,ProductID), new SqlParameter(@Stock,Stock), }。 (sql2, pms2)。 } else if (Stock == Number) { ()。 string sql2 = update tb_ProductInfo set StatusProduct=39。無貨39。 ,Stock=0 + where ProductID=@ProductID。 SqlParameter[] pms2 = new SqlParameter[] { new SqlParameter(@ProductID,ProductID), }。 (sql2, pms2)。 } else { fail = 1。 ()。 33 } if (fail==0) { string strOrderNumber = (select top 1 OrderNumber from [tb_OrderInfo] order by OrderNumber desc)。 ()。//打開連接 SqlCommand cmd1 = new SqlCommand(strOrderNumber, conn)。 SqlDataReader dr1 = ()。 cmd1 = new SqlCommand(strOrderNumber, conn)。 while (()) { Session[OrderNumber] = dr1[OrderNumber].ToString()。 } ()。//關(guān)閉連接 ()。 } } else { ()。 } } }
點擊復(fù)制文檔內(nèi)容
研究報告相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1