資源簡介
一個用c#編寫的web網站!實現了一個網上書店的基本功能。對c#初學者有很好的參考價值。從下訂單到收賬結束,整個流程都有很好的設計思路,希望大家喜歡,并上傳點更有價值的代碼來供大家參考!

代碼片段和文件信息
using?System;
using?System.Collections;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Web;
using?System.Web.SessionState;
using?System.Web.UI;
using?System.Web.UI.WebControls;
using?System.Web.UI.HtmlControls;
using?eBookShop.BLL;
///?
///?BookDetail?的摘要說明。
///?
public?partial?class?BookDetail?:?System.Web.UI.Page
{
????///?
????///?加載圖書詳細信息
????///?
????///?
????///?
????protected?void?Page_Load(object?sender?System.EventArgs?e)
????{
????????if?(!IsPostBack)
????????????InitData();
????}
????///?
????///?加載圖書詳細信息
????///?
????private?void?InitData()
????{
????????int?bookId?=?Convert.ToInt32(Request.QueryString[“book_id“]);
????????Book?book?=?new?Book();
????????book.LoadData(bookId);
????????Category?category?=?new?Category();
????????category.LoadData(book.CategoryID);
????????LabelBookInfo.Text?=?“【類別】“?+?category.CategoryName
????????????????????????????+?“
【書名】“?+?book.BookName
????????????????????????????+?“
【作者】“?+?book.Author
????????????????????????????+?“
【出版社】“?+?book.Publisher
????????????????????????????+?“
【出版日期】“?+?book.PublishDate.ToLongDateString()
????????????????????????????+?“
【價格】¥“?+?book.Price.ToString()
????????????????????????????+?“
【頁數】“?+?book.PageNum.ToString()
????????????????????????????+?“
【簡介】“?+?book.Description
????????????????????????????+?“
【銷量】“?+?book.SaleCount.ToString()?+?“冊“;
????????ImageBook.ImageUrl?=?“~/Images/“?+?book.PictureUrl;
????????ImageBook.AlternateText=?“暫無圖片“?;
????}
????///?
????///?返回按鈕單擊事件
????///?
????///?
????///?
????protected?void?ButtonBack_Click(object?sender?System.EventArgs?e)
????{
????????Response.Write(“ript?Language=javascript>history.go(-2); ript>“);
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????223??2007-04-22?11:36??網上書店\readme.txt
?????文件???????4426??2006-03-30?21:19??網上書店\log4net\AssemblyInfo.cs
?????文件???????1532??2006-03-30?21:19??網上書店\log4net\AssemblyVersionInfo.cpp
?????文件???????1545??2006-03-30?21:19??網上書店\log4net\AssemblyVersionInfo.cs
?????文件???????1568??2006-03-30?21:19??網上書店\log4net\AssemblyVersionInfo.js
?????文件???????1493??2006-03-30?21:19??網上書店\log4net\AssemblyVersionInfo.vb
?????文件???????2736??2006-03-30?21:19??網上書店\log4net\GlobalContext.cs
?????文件??????42138??2006-03-30?21:19??網上書店\log4net\ILog.cs
?????文件??????30936??2006-03-30?21:19??網上書店\log4net\LogManager.cs
?????文件???????4543??2006-03-30?21:19??網上書店\log4net\LogicalThreadContext.cs
?????文件???????5625??2006-03-30?21:19??網上書店\log4net\MDC.cs
?????文件??????10131??2006-03-30?21:19??網上書店\log4net\NDC.cs
?????文件???????4132??2006-03-30?21:19??網上書店\log4net\ThreadContext.cs
?????文件??????24532??2006-10-16?19:21??網上書店\log4net\log4net.csproj
?????文件???????1358??2006-03-30?21:19??網上書店\log4net\log4net.sln
?????文件????1366011??2006-10-16?19:21??網上書店\log4net\log4net.xm
?????文件????????355??2006-10-16?19:21??網上書店\log4net\obj\log4net.csproj.FileList.txt
?????文件?????270336??2006-10-16?19:21??網上書店\log4net\obj\Debug\log4net.dll
?????文件?????976384??2006-10-16?19:21??網上書店\log4net\obj\Debug\log4net.pdb
?????文件?????270336??2006-10-16?19:21??網上書店\log4net\bin\debug\log4net.dll
?????文件?????976384??2006-10-16?19:21??網上書店\log4net\bin\debug\log4net.pdb
?????文件????1366011??2006-10-16?19:21??網上書店\log4net\bin\debug\log4net.xm
?????文件???????9434??2006-03-30?21:19??網上書店\log4net\Util\AppenderAttachedImpl.cs
?????文件???????4140??2006-03-30?21:19??網上書店\log4net\Util\CompositeProperties.cs
?????文件???????1378??2006-03-30?21:19??網上書店\log4net\Util\ContextPropertiesba
?????文件???????5151??2006-03-30?21:19??網上書店\log4net\Util\CountingQuietTextWriter.cs
?????文件???????8697??2006-03-30?21:19??網上書店\log4net\Util\CyclicBuffer.cs
?????文件???????5038??2006-03-30?21:19??網上書店\log4net\Util\EmptyCollection.cs
?????文件??????10515??2006-03-30?21:19??網上書店\log4net\Util\EmptyDictionary.cs
?????文件???????3301??2006-03-30?21:19??網上書店\log4net\Util\FormattingInfo.cs
............此處省略281個文件信息
- 上一篇:C#數據庫導出Excel易懂版
- 下一篇:課程表-日程表(C#)
評論
共有 條評論