版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
1、綜合實訓(課程設計)項目 ASP.NET 專 業(yè): 計算機應用技術 課程名稱: ASP.NET 系 部: 計算機與信息工程系 班 級: 091311 指導教師: 高 祖 彥 完成時間: 2011-11-22 學生姓名: 談銳 學 號: 09131120 恩施職業(yè)技術學院學生綜合實訓(課程設計)評分表學生姓名談銳專業(yè)計算機應用班級091311課程名稱A綜合實訓項目(課程設計題目)B2C完成時間2011-11-22實訓總結(設計說明)摘要通過這次實驗我自己動手用做了一個電子商務網(wǎng)站,在制作的過程中我學到了許多知識,為以后的工作打下良好的基礎。指導教師意見 指導教師簽字: 年 月 日 綜合實訓(課程
2、設計)成績數(shù)據(jù)庫名:db_NetStore表名:sysdiagrams1序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1namesysname2560否2principal_idint40否3diagram_idint40是是否4versionint40是5definitionvarbinaryMAX0是表名:tb_Admin序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1AdminIDint40是是否2AdminNamevarchar500否3Passwordvarchar500否4RealNamevarchar500否5Emailvarchar500否6LoadDatedateti
3、me83否getdate表名:tb_BookInfo序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1BookIDint40是是否2ClassIDint40否3BookNamevarchar500否4BookIntroducentext160否5Authorvarchar500否6Companyvarchar500否7BookUrlvarchar2000否8MarketPricefloat80否9HotPricefloat80否10Isrefinementbit10否11IsHotbit10否12IsDiscountbit10否13LoadDatedatetime83否getdate表名:t
4、b_Class序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1ClassIDint40是是否2ClassNamevarchar500否3CategoryUrlvarchar500否表名:tb_Detail序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1DetailIDint40是是否2BookIDint40否3Numint40否4OrderIDint40否5TotailPricefloat80否6Remarkvarchar2000是表名:tb_Image序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1ImageIDint40是是否2ImageNamevarchar500否3Imag
5、eUrlvarchar2000否表名:tb_LeaveWord序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1IDint40是是否2Uidnvarchar500否3Subjectnvarchar500否4Contentntext160是5DateTimedatetime83否6IPnvarchar200否表名:tb_Member序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1MemberIDint40是是否2UserNamevarchar500否3Passwordvarchar500否4RealNamevarchar500否5Sexbit10否6Phonecodevarchar200否
6、7Emailvarchar500否8Addressvarchar2000否9PostCodechar100否10LoadDatedatetime83否getdate表名:tb_OrderInfo序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1OrderIDint40是是否2OrderDatedatetime83否getdate3BooksFeefloat80否4ShipFeefloat80否5TotalPricefloat80否6ShipTypevarchar500否7ReceiverNamevarchar500否8ReceiverPhonevarchar200否9ReceiverPost
7、Codechar100否10ReceiverAddressvarchar2000否11ReceiverEmailvarchar500否12IsConfirmbit10否013IsSendbit10否014IsEndbit10否015AdminIDint40是16ConfirmTimedatetime83是表名:tb_Reply序號列名數(shù)據(jù)類型長度小數(shù)位標識主鍵允許空默認值說明1IDint40是是否2UNamenvarchar500是3Contentntext160是4DateTimedatetime83是5ReplyIDint40是6IPnvarchar200是using System;usi
8、ng System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Data.SqlClient;using System.Collections;public partial class _Default : Syst
9、em.Web.UI.Page CommonClass ccObj = new CommonClass(); GoodsClass gcObj = new GoodsClass(); protected void Page_Load(object sender, EventArgs e) if (!IsPostBack) RefineBind(); HotBind(); DiscountBind(); /綁定市場價格 public string GetVarMKP(string strMarketPrice) return ccObj.VarStr(strMarketPrice, 2); /綁定
10、熱賣價格 public string GetVarHot(string strHotPrice) return ccObj.VarStr(strHotPrice, 2); protected void RefineBind() gcObj.DLDeplayGI(1, this.dLRefine, "Refine"); protected void HotBind() gcObj.DLDeplayGI(3, this.dlHot, "Hot"); protected void DiscountBind() gcObj.DLDeplayGI(2, this.
11、dlDiscount, "Discount"); public void AddressBack(DataListCommandEventArgs e) Session"address" = "" Session"address" = "Default.aspx" Response.Redirect("/showInfo.aspx?id=" + Convert.ToInt32(e.CommandArgument.ToString(); protected void dLRef
12、ine_ItemCommand(object source, DataListCommandEventArgs e) if (e.CommandName = "detailSee") AddressBack(e); else if (e.CommandName = "buy") AddShopCart(e); protected void dlDiscount_ItemCommand(object source, DataListCommandEventArgs e) if (e.CommandName = "detailSee")
13、AddressBack(e); else if (e.CommandName = "buy") AddShopCart(e); protected void dlHot_ItemCommand(object source, DataListCommandEventArgs e) if (e.CommandName = "detailSee") AddressBack(e); else if (e.CommandName = "buy") AddShopCart(e); / <summary> / 向購物車中添加新商品 /
14、</summary> / <param name="e"> / 獲取或設置可選參數(shù), / 該參數(shù)與關聯(lián)的 CommandName / 一起被傳遞到 Command 事件。 / </param> public void AddShopCart(DataListCommandEventArgs e) Hashtable hashCar; if (Session"ShopCart" = null) /如果用戶沒有分配購物車 hashCar = new Hashtable(); /新生成一個 hashCar.Add(e.Com
15、mandArgument, 1); /添加一個商品 Session"ShopCart" = hashCar; /分配給用戶 else /用戶已經(jīng)有購物車 hashCar = (Hashtable)Session"ShopCart"/得到購物車的hash表 if (hashCar.Contains(e.CommandArgument)/購物車中已有此商品,商品數(shù)量加1 int count = Convert.ToInt32(hashCare.CommandArgument.ToString();/得到該商品的數(shù)量 hashCare.CommandArgum
16、ent = (count + 1);/商品數(shù)量加1 else hashCar.Add(e.CommandArgument, 1);/如果沒有此商品,則新添加一個項 protected void Button1_Click(object sender, EventArgs e) using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.We
17、b.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Data.SqlClient;public partial class Manage_Login : System.Web.UI.Page CommonClass ccObj = new CommonClass(); DBClass dbObj = new DBClass(); protected void Page_Load(object sender, EventArgs e) if
18、(!IsPostBack) this.labCode.Text =ccObj.RandomNum(4);/產(chǎn)生驗證碼 protected void btnLogin_Click(object sender, EventArgs e) /判斷用戶是否已輸入了必要的信息 if (this.txtAdminName.Text.Trim() = "" | this.txtAdminPwd.Text.Trim() = "") Response.Write(ccObj.MessageBox("登錄名和密碼不能為空!"); else /判斷用戶輸入
19、的驗證碼是否正確 if (txtAdminCode.Text.Trim() = labCode.Text.Trim() /定義一個字符串,獲取用戶信息 string strSql = "select * from tb_Admin where AdminName='"+this.txtAdminName.Text.Trim()+"' and Password='"+this.txtAdminPwd.Text.Trim()+"'" DataTable dsTable=dbObj.GetDataSetStr
20、(strSql, "tbAdmin"); if (dsTable.Rows.Count > 0) Session"AID" = Convert.ToInt32(dsTable.Rows00.ToString();/保存用戶ID Session"AName" = dsTable.Rows01.ToString();/保存用戶名 Response.Write("<script language=javascript>window.open('AdminIndex.aspx');window.cl
21、ose();</script>"); else Response.Write(ccObj.MessageBox("您輸入的用戶名或密碼錯誤,請重新輸入!"); else Response.Write(ccObj.MessageBox("驗證碼輸入有誤,請重新輸入!"); protected void btnCancel_Click(object sender, EventArgs e) Response.Write("<script>window.close();location='javascript
22、:history.go(-1)'</script>"); using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;usin
23、g System.Data.SqlClient;public partial class feedback : System.Web.UI.Page CommonClass ccObj = new CommonClass(); DBClass dbObj = new DBClass(); protected void Page_Load(object sender, EventArgs e) if (!IsPostBack) if (Session"UserName" = null) Response.Redirect("Default.aspx"); protected void btnOK_Click(object sender, EventArgs e) if (Session"UserName" = null) Response.Redirect("Default.aspx"); e
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度拆除工程安全教育培訓拆房協(xié)議范本4篇
- 個人家居裝潢服務協(xié)議(2024版)版B版
- 二零二五年度FXBIB房地產(chǎn)經(jīng)紀網(wǎng)絡平臺合作協(xié)議3篇
- 2025年度產(chǎn)業(yè)園企業(yè)入駐產(chǎn)業(yè)園區(qū)安全與應急管理合作協(xié)議4篇
- 2025年度高科技園區(qū)產(chǎn)權轉讓合同模板及范文3篇
- 二零二五年度南京市房產(chǎn)贈與合同(親情關懷版)3篇
- 事業(yè)單位固定期限勞動協(xié)議樣式版A版
- 2025年度城市軌道交通建設合同協(xié)議4篇
- 2025年度老舊廠房拆遷評估及補償執(zhí)行標準合同3篇
- 2025年度戶外活動柴油補給服務協(xié)議4篇
- 2024-2025學年山東省濰坊市高一上冊1月期末考試數(shù)學檢測試題(附解析)
- 綿陽市高中2022級(2025屆)高三第二次診斷性考試(二診)歷史試卷(含答案)
- 《視頻壓縮基礎》課件
- 2025南方財經(jīng)全媒體集團校園招聘63人高頻重點提升(共500題)附帶答案詳解
- 《A機場公司人力資源管理工作實踐調(diào)研報告》2600字(論文)
- 社工人才培訓計劃實施方案
- 數(shù)學-湖南省新高考教學教研聯(lián)盟(長郡二十校聯(lián)盟)2024-2025學年2025屆高三上學期第一次預熱演練試題和答案
- 四年級數(shù)學(上)計算題專項練習及答案
- 6、水平四+田徑18課時大單元計劃-《雙手頭上前擲實心球》
- 幼兒園人民幣啟蒙教育方案
- 軍事理論(2024年版)學習通超星期末考試答案章節(jié)答案2024年
評論
0/150
提交評論