91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1.6MB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2023-11-04
  • 語言: C#
  • 標(biāo)簽: 書店??

資源簡(jiǎn)介

一個(gè)用c#編寫的web網(wǎng)站!實(shí)現(xiàn)了一個(gè)網(wǎng)上書店的基本功能。對(duì)c#初學(xué)者有很好的參考價(jià)值。從下訂單到收賬結(jié)束,整個(gè)流程都有很好的設(shè)計(jì)思路,希望大家喜歡,并上傳點(diǎn)更有價(jià)值的代碼來供大家參考!

資源截圖

代碼片段和文件信息

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
{

????///?
????///?加載圖書詳細(xì)信息
????///?

????///?
????///?
????protected?void?Page_Load(object?sender?System.EventArgs?e)
????{
????????if?(!IsPostBack)
????????????InitData();
????}

????///?
????///?加載圖書詳細(xì)信息
????///?

????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()
????????????????????????????+?“
【價(jià)格】¥“?+?book.Price.ToString()
????????????????????????????+?“
【頁(yè)數(shù)】“?+?book.PageNum.ToString()
????????????????????????????+?“
【簡(jiǎn)介】“?+?book.Description
????????????????????????????+?“
【銷量】“?+?book.SaleCount.ToString()?+?“冊(cè)“;
????????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>“);
????}
}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件????????223??2007-04-22?11:36??網(wǎng)上書店\readme.txt

?????文件???????4426??2006-03-30?21:19??網(wǎng)上書店\log4net\AssemblyInfo.cs

?????文件???????1532??2006-03-30?21:19??網(wǎng)上書店\log4net\AssemblyVersionInfo.cpp

?????文件???????1545??2006-03-30?21:19??網(wǎng)上書店\log4net\AssemblyVersionInfo.cs

?????文件???????1568??2006-03-30?21:19??網(wǎng)上書店\log4net\AssemblyVersionInfo.js

?????文件???????1493??2006-03-30?21:19??網(wǎng)上書店\log4net\AssemblyVersionInfo.vb

?????文件???????2736??2006-03-30?21:19??網(wǎng)上書店\log4net\GlobalContext.cs

?????文件??????42138??2006-03-30?21:19??網(wǎng)上書店\log4net\ILog.cs

?????文件??????30936??2006-03-30?21:19??網(wǎng)上書店\log4net\LogManager.cs

?????文件???????4543??2006-03-30?21:19??網(wǎng)上書店\log4net\LogicalThreadContext.cs

?????文件???????5625??2006-03-30?21:19??網(wǎng)上書店\log4net\MDC.cs

?????文件??????10131??2006-03-30?21:19??網(wǎng)上書店\log4net\NDC.cs

?????文件???????4132??2006-03-30?21:19??網(wǎng)上書店\log4net\ThreadContext.cs

?????文件??????24532??2006-10-16?19:21??網(wǎng)上書店\log4net\log4net.csproj

?????文件???????1358??2006-03-30?21:19??網(wǎng)上書店\log4net\log4net.sln

?????文件????1366011??2006-10-16?19:21??網(wǎng)上書店\log4net\log4net.xml

?????文件????????355??2006-10-16?19:21??網(wǎng)上書店\log4net\obj\log4net.csproj.FileList.txt

?????文件?????270336??2006-10-16?19:21??網(wǎng)上書店\log4net\obj\Debug\log4net.dll

?????文件?????976384??2006-10-16?19:21??網(wǎng)上書店\log4net\obj\Debug\log4net.pdb

?????文件?????270336??2006-10-16?19:21??網(wǎng)上書店\log4net\bin\debug\log4net.dll

?????文件?????976384??2006-10-16?19:21??網(wǎng)上書店\log4net\bin\debug\log4net.pdb

?????文件????1366011??2006-10-16?19:21??網(wǎng)上書店\log4net\bin\debug\log4net.xml

?????文件???????9434??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\AppenderAttachedImpl.cs

?????文件???????4140??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\CompositeProperties.cs

?????文件???????1378??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\ContextPropertiesbase.cs

?????文件???????5151??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\CountingQuietTextWriter.cs

?????文件???????8697??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\CyclicBuffer.cs

?????文件???????5038??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\EmptyCollection.cs

?????文件??????10515??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\EmptyDictionary.cs

?????文件???????3301??2006-03-30?21:19??網(wǎng)上書店\log4net\Util\FormattingInfo.cs

............此處省略281個(gè)文件信息

評(píng)論

共有 條評(píng)論

相關(guān)資源