实例介绍
1.搭建ASP.NET开发环境 2.C#语言基础 3.ASP.NET的基本对象 4.应用ADO.NET编程 5.进一步使用ADO.NET编程 6.导航与控件 7.用户输入验证 8.网络用户管理系统 9.网络硬盘 10.留言板 11.网络邮件管理系统 12.网站流量统计 13.网络在线投票系统 14.网上购物商城
【实例截图】
【核心代码】
4744302543377350456.rar
└── 源代码
├── ch01
│ └── Example_1_2
│ ├── App_Data
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ └── Web.config
├── ch02
│ ├── Example_2_2
│ │ ├── App_Data
│ │ ├── Example_2_2.suo
│ │ ├── TestBoxUnBox.aspx
│ │ ├── TestBoxUnBox.aspx.cs
│ │ ├── TestValueRefPage.aspx
│ │ ├── TestValueRefPage.aspx.cs
│ │ └── Web.Config
│ ├── Example_2_3
│ │ ├── App_Data
│ │ ├── ConvertOperation.aspx
│ │ ├── ConvertOperation.aspx.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── OverroadOperation.aspx
│ │ ├── OverroadOperation.aspx.cs
│ │ └── Web.Config
│ ├── Example_2_4
│ │ ├── App_Data
│ │ ├── FormatString.aspx
│ │ ├── FormatString.aspx.cs
│ │ ├── StringAndBuilder.aspx
│ │ ├── StringAndBuilder.aspx.cs
│ │ ├── StringEncode.aspx
│ │ ├── StringEncode.aspx.cs
│ │ └── Web.Config
│ ├── Example_2_5
│ │ ├── App_Data
│ │ ├── ClassStruct.aspx
│ │ ├── ClassStruct.aspx.cs
│ │ ├── UsingIndex.aspx
│ │ ├── UsingIndex.aspx.cs
│ │ ├── UsingOverload.aspx
│ │ ├── UsingOverload.aspx.cs
│ │ ├── UsingRefOut.aspx
│ │ ├── UsingRefOut.aspx.cs
│ │ └── Web.Config
│ ├── Example_2_6
│ │ ├── App_Data
│ │ ├── TestArray.aspx
│ │ ├── TestArray.aspx.cs
│ │ ├── TestEnum.aspx
│ │ ├── TestEnum.aspx.cs
│ │ ├── UsingArrayList.aspx
│ │ ├── UsingArrayList.aspx.cs
│ │ ├── UsingDictionary.aspx
│ │ ├── UsingDictionary.aspx.cs
│ │ ├── UsingHash.aspx
│ │ ├── UsingHash.aspx.cs
│ │ ├── UsingQueue.aspx
│ │ ├── UsingQueue.aspx.cs
│ │ ├── UsingStack.aspx
│ │ ├── UsingStack.aspx.cs
│ │ └── Web.Config
│ ├── Example_2_7
│ │ ├── AddRemoveDelegate.aspx
│ │ ├── AddRemoveDelegate.aspx.cs
│ │ ├── App_Data
│ │ ├── UsingDelegate.aspx
│ │ ├── UsingDelegate.aspx.cs
│ │ └── Web.Config
│ └── Example_2_8
│ ├── App_Data
│ ├── UsingReflect.aspx
│ ├── UsingReflect.aspx.cs
│ └── Web.Config
├── ch03
│ ├── database
│ │ └── ShoppingDB(0613)
│ ├── Example_3_1
│ │ ├── App_Data
│ │ ├── Direct.aspx
│ │ ├── Direct.aspx.cs
│ │ ├── Example_3_1.suo
│ │ ├── Resource.aspx
│ │ ├── Resource.aspx.cs
│ │ ├── ViewState.aspx
│ │ ├── ViewState.aspx.cs
│ │ └── Web.Config
│ ├── Example_3_2
│ │ ├── App_Data
│ │ ├── Dir.aspx
│ │ ├── Dir.aspx.cs
│ │ ├── Example_3_2.suo
│ │ ├── ResposeOutput.aspx
│ │ ├── ResposeOutput.aspx.cs
│ │ ├── ShowPicture.aspx
│ │ ├── ShowPicture.aspx.cs
│ │ ├── Src.aspx
│ │ ├── Src.aspx.cs
│ │ └── Web.Config
│ ├── Example_3_3
│ │ ├── App_Data
│ │ ├── Dir.aspx
│ │ ├── Dir.aspx.cs
│ │ ├── Example_3_3.suo
│ │ ├── Global.asax
│ │ ├── PhysicalPath.aspx
│ │ ├── PhysicalPath.aspx.cs
│ │ ├── src.aspx
│ │ ├── src.aspx.cs
│ │ └── web.config
│ └── Example_3_4
│ ├── App_Data
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ └── Web.Config
├── ch04
│ ├── database
│ │ └── ShoppingDB(0613)
│ ├── Example_4_2_1
│ │ ├── App_Data
│ │ ├── ConnectionSQLServer.aspx
│ │ ├── ConnectionSQLServer.aspx.cs
│ │ └── Web.Config
│ ├── Example_4_2_2
│ │ ├── App_Data
│ │ ├── ConnectionODBC.aspx
│ │ ├── ConnectionODBC.aspx.cs
│ │ └── Web.Config
│ ├── Example_4_2_3
│ │ ├── App_Data
│ │ ├── ConnectionOLEDB.aspx
│ │ ├── ConnectionOLEDB.aspx.cs
│ │ ├── MyAccessDB.mdb
│ │ └── Web.Config
│ ├── Example_4_2_4
│ │ ├── App_Data
│ │ ├── ConnectionOracle.aspx
│ │ ├── ConnectionOracle.aspx.cs
│ │ └── Web.Config
│ ├── Example_4_3_1
│ │ ├── App_Data
│ │ ├── CommandReader.aspx
│ │ ├── CommandReader.aspx.cs
│ │ └── Web.Config
│ ├── Example_4_3_2
│ │ ├── App_Data
│ │ ├── DataAdapterDataSet.aspx
│ │ ├── DataAdapterDataSet.aspx.cs
│ │ └── Web.Config
│ ├── Example_4_3_3
│ │ ├── App_Data
│ │ ├── DataViewFilter.aspx
│ │ ├── DataViewFilter.aspx.cs
│ │ └── Web.Config
│ ├── Example_4_3_4
│ │ ├── App_Data
│ │ ├── DataQuery.aspx
│ │ ├── DataQuery.aspx.cs
│ │ └── Web.Config
│ └── Example_4_3_5
│ ├── App_Data
│ ├── ReaderXMLData.aspx
│ ├── ReaderXMLData.aspx.cs
│ └── Web.Config
├── ch05
│ ├── database
│ │ └── ShoppingDB(0613).bak
│ ├── Example_5_1
│ │ ├── AccessDS.aspx
│ │ ├── AccessDS.aspx.cs
│ │ ├── App_Code
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ └── User.cs
│ │ ├── App_Data
│ │ │ └── Book.xml
│ │ ├── database
│ │ │ └── AccessDB.mdb
│ │ ├── DataBindingPage.aspx
│ │ ├── DataBindingPage.aspx.cs
│ │ ├── LINQDS.aspx
│ │ ├── LINQDS.aspx.cs
│ │ ├── ObjectDS.aspx
│ │ ├── ObjectDS.aspx.cs
│ │ ├── SiteMapDS.aspx
│ │ ├── SiteMapDS.aspx.cs
│ │ ├── SqlDS.aspx
│ │ ├── SqlDS.aspx.cs
│ │ ├── vwd.webinfo
│ │ ├── Web.Config
│ │ ├── Web.sitemap
│ │ ├── XmlDS.aspx
│ │ └── XmlDS.aspx.cs
│ ├── Example_5_2
│ │ ├── App_Data
│ │ ├── DataList.aspx
│ │ ├── DataList.aspx.cs
│ │ ├── DataListField.aspx
│ │ ├── DataListField.aspx.cs
│ │ ├── ListView.aspx
│ │ ├── ListView.aspx.cs
│ │ ├── Repeater.aspx
│ │ ├── Repeater.aspx.cs
│ │ └── Web.Config
│ ├── Example_5_3
│ │ ├── AlternateView.aspx
│ │ ├── AlternateView.aspx.cs
│ │ ├── App_Data
│ │ ├── DataBindView.aspx
│ │ ├── DataBindView.aspx.cs
│ │ ├── EditView.aspx
│ │ ├── EditView.aspx.cs
│ │ ├── SortView.aspx
│ │ ├── SortView.aspx.cs
│ │ ├── ViewField.aspx
│ │ ├── ViewField.aspx.cs
│ │ ├── ViewPage.aspx
│ │ ├── ViewPage.aspx.cs
│ │ └── Web.Config
│ ├── Example_5_4
│ │ ├── App_Data
│ │ ├── CreateXml.aspx
│ │ ├── CreateXml.aspx.cs
│ │ ├── Files
│ │ ├── ReaderXml.aspx
│ │ ├── ReaderXml.aspx.cs
│ │ ├── Web.Config
│ │ ├── xmlfile.xml
│ │ ├── XmlToDS.aspx
│ │ └── XmlToDS.aspx.cs
│ └── Example_5_5
│ ├── App_Code
│ │ ├── Shopping.Designer.cs
│ │ └── Shopping.edmx
│ ├── App_Data
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ └── web.config
├── ch06
│ ├── database
│ │ └── ShoppingDB(0613).bak
│ ├── Example_6_1
│ │ ├── App_Data
│ │ ├── UsingLogin.aspx
│ │ ├── UsingLogin.aspx.cs
│ │ ├── UsingManu.aspx
│ │ ├── UsingManu.aspx.cs
│ │ ├── UsingTreeView.aspx
│ │ ├── UsingTreeView.aspx.cs
│ │ └── web.config
│ ├── Example_6_2
│ │ ├── App_Data
│ │ ├── Bluehills.aspx
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Images
│ │ │ ├── Blue hills.jpg
│ │ │ ├── Sunset.jpg
│ │ │ ├── Water lilies.jpg
│ │ │ └── Winter.jpg
│ │ ├── site.master
│ │ ├── site.master.cs
│ │ ├── Sun.aspx
│ │ └── Web.Config
│ ├── Example_6_3
│ │ ├── App_Data
│ │ ├── App_Themes
│ │ │ └── Control
│ │ │ └── SkinFile.skin
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ └── Web.config
│ ├── Example_6_4
│ │ ├── App_Data
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── UserLoginUC.ascx
│ │ ├── UserLoginUC.ascx.cs
│ │ └── Web.config
│ ├── Example_6_5
│ │ ├── App_Code
│ │ │ ├── ClassDiagram.cd
│ │ │ └── MyCalendar.cs
│ │ ├── App_Data
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Event.aspx
│ │ ├── Event.aspx.cs
│ │ └── Web.Config
│ └── Example_6_6
│ ├── App_Data
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── TimerDemo.aspx
│ ├── TimerDemo.aspx.cs
│ └── web.config
├── ch07
│ ├── Example_7_2_1
│ │ ├── App_Data
│ │ ├── NotNullValidate.aspx
│ │ ├── NotNullValidate.aspx.cs
│ │ └── Web.Config
│ ├── Example_7_2_2
│ │ ├── App_Data
│ │ ├── RangeValidate.aspx
│ │ ├── RangeValidate.aspx.cs
│ │ └── Web.Config
│ ├── Example_7_2_3
│ │ ├── App_Data
│ │ ├── CompareValidate.aspx
│ │ ├── CompareValidate.aspx.cs
│ │ └── Web.Config
│ ├── Example_7_3_1
│ │ ├── App_Data
│ │ ├── DateValidate.aspx
│ │ ├── DateValidate.aspx.cs
│ │ └── Web.Config
│ ├── Example_7_3_2
│ │ ├── App_Data
│ │ ├── PhoneValidate.aspx
│ │ ├── PhoneValidate.aspx.cs
│ │ └── Web.Config
│ ├── Example_7_3_3
│ │ ├── App_Data
│ │ ├── NumberValidate.aspx
│ │ ├── NumberValidate.aspx.cs
│ │ └── Web.Config
│ ├── Example_7_3_4
│ │ ├── App_Data
│ │ ├── EmailValidate.aspx
│ │ ├── EmailValidate.aspx.cs
│ │ └── Web.Config
│ ├── Example_7_4
│ │ ├── App_Data
│ │ ├── CustomerValidate.aspx
│ │ ├── CustomerValidate.aspx.cs
│ │ └── Web.Config
│ └── Example_7_5
│ ├── App_Data
│ ├── SummaryValidate.aspx
│ ├── SummaryValidate.aspx.cs
│ └── Web.Config
├── ch08
│ ├── database
│ │ └── WebUserDB(0613).bak
│ └── WebUserManage
│ ├── AddUser.aspx
│ ├── AddUser.aspx.cs
│ ├── App_Code
│ │ └── User.cs
│ ├── App_Data
│ ├── ASPNET2.0BaseCss.css
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── EditPwd.aspx
│ ├── EditPwd.aspx.cs
│ ├── EditUser.aspx
│ ├── EditUser.aspx.cs
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Images
│ │ ├── 111.png
│ │ ├── 222.png
│ │ ├── 444.png
│ │ ├── copyrightLine.jpg
│ │ ├── delete.gif
│ │ ├── down.gif
│ │ ├── edit.gif
│ │ ├── ffwd.gif
│ │ ├── frew.gif
│ │ ├── fwd.gif
│ │ ├── leftBand.jpg
│ │ ├── logoLeft.jpg
│ │ ├── logoRight.jpg
│ │ ├── lt.gif
│ │ ├── managehide.gif
│ │ ├── managequit.gif
│ │ ├── manageshow.gif
│ │ ├── menuline.jpg
│ │ ├── moduleheaher.gif
│ │ ├── navlink.gif
│ │ ├── navspacer.gif
│ │ ├── rew.gif
│ │ ├── rt.gif
│ │ ├── topbar.gif
│ │ ├── treeroot.gif
│ │ ├── up.gif
│ │ └── validator.jpg
│ ├── UserLogoff.aspx
│ ├── UserLogoff.aspx.cs
│ ├── UserManage.aspx
│ ├── UserManage.aspx.cs
│ ├── ValidateImage.aspx
│ ├── ValidateImage.aspx.cs
│ ├── ViewUser.aspx
│ ├── ViewUser.aspx.cs
│ └── Web.config
├── ch09
│ ├── database
│ │ └── WebDiskDB(0613).bak
│ └── WebDisk
│ ├── AddFolder.aspx
│ ├── AddFolder.aspx.cs
│ ├── App_Code
│ │ ├── Disk.cs
│ │ ├── SystemTools.cs
│ │ └── User.cs
│ ├── App_Data
│ ├── ASPNET2.0BaseCss.css
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── EditFile.aspx
│ ├── EditFile.aspx.cs
│ ├── EditFolder.aspx
│ ├── EditFolder.aspx.cs
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Images
│ │ ├── 111.png
│ │ ├── 222.png
│ │ ├── 444.png
│ │ ├── bmp.bmp
│ │ ├── copyrightLine.jpg
│ │ ├── delete.gif
│ │ ├── down.gif
│ │ ├── edit.gif
│ │ ├── exe.bmp
│ │ ├── ffwd.gif
│ │ ├── folder.gif
│ │ ├── folder-up.gif
│ │ ├── frew.gif
│ │ ├── fwd.gif
│ │ ├── leftBand.jpg
│ │ ├── logoLeft.jpg
│ │ ├── logoRight.jpg
│ │ ├── lt.gif
│ │ ├── managehide.gif
│ │ ├── managequit.gif
│ │ ├── manageshow.gif
│ │ ├── menuline.jpg
│ │ ├── moduleheaher.gif
│ │ ├── navlink.gif
│ │ ├── navspacer.gif
│ │ ├── other.gif
│ │ ├── rew.gif
│ │ ├── rt.gif
│ │ ├── Thumbs.db
│ │ ├── topbar.gif
│ │ ├── treeroot.gif
│ │ ├── up.gif
│ │ ├── validator.jpg
│ │ └── vote.gif
│ ├── SearchFile.aspx
│ ├── SearchFile.aspx.cs
│ ├── ShowDisk.aspx
│ ├── ShowDisk.aspx.cs
│ ├── UploadFile.aspx
│ ├── UploadFile.aspx.cs
│ ├── ViewDisk.aspx
│ ├── ViewDisk.aspx.cs
│ ├── web.config
│ ├── WebDisk
│ │ ├── 20051515251748.gif
│ │ ├── base.bmp
│ │ ├── LeapFTP.exe
│ │ ├── Tasks.xml
│ │ ├── vote.sql
│ │ └── whatsnew.txt
│ ├── WebDisk.sln
│ └── WebDisk.suo
├── ch10
│ ├── database
│ │ └── LeavewordDB(0613).bak
│ └── WebLeaveword
│ ├── AddMutilReply.aspx
│ ├── AddMutilReply.aspx.cs
│ ├── AddReply.aspx
│ ├── AddReply.aspx.cs
│ ├── App_Code
│ │ ├── ILeaveword.cs
│ │ ├── IReply.cs
│ │ ├── IReplyLeaveword.cs
│ │ ├── Leaveword.cs
│ │ ├── Reply.cs
│ │ ├── ReplyLeaveword.cs
│ │ ├── SystemTools.cs
│ │ └── User.cs
│ ├── App_Data
│ ├── ASPNET2.0BaseCss.css
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Images
│ │ ├── 111.png
│ │ ├── 222.png
│ │ ├── 444.png
│ │ ├── copyrightLine.jpg
│ │ ├── delete.gif
│ │ ├── down.gif
│ │ ├── edit.gif
│ │ ├── ffwd.gif
│ │ ├── frew.gif
│ │ ├── fwd.gif
│ │ ├── leftBand.jpg
│ │ ├── logoLeft.jpg
│ │ ├── logoRight.jpg
│ │ ├── lt.gif
│ │ ├── managehide.gif
│ │ ├── managequit.gif
│ │ ├── manageshow.gif
│ │ ├── menuline.jpg
│ │ ├── moduleheaher.gif
│ │ ├── navlink.gif
│ │ ├── navspacer.gif
│ │ ├── rew.gif
│ │ ├── rt.gif
│ │ ├── Thumbs.db
│ │ ├── topbar.gif
│ │ ├── treeroot.gif
│ │ ├── up.gif
│ │ ├── validator.jpg
│ │ └── vote.gif
│ ├── Leaveword.aspx
│ ├── Leaveword.aspx.cs
│ ├── LeavewordManage.aspx
│ ├── LeavewordManage.aspx.cs
│ ├── ReplyManage.aspx
│ ├── ReplyManage.aspx.cs
│ ├── UserLogoff.aspx
│ ├── UserLogoff.aspx.cs
│ ├── ValidateImage.aspx
│ ├── ValidateImage.aspx.cs
│ ├── ViewLeaveword.aspx
│ ├── ViewLeaveword.aspx.cs
│ ├── ViewReply.aspx
│ ├── ViewReply.aspx.cs
│ └── web.config
├── ch11
│ ├── database
│ │ └── WebMailDB(0613).bak
│ └── WebEmail
│ ├── App_Code
│ │ ├── Folder.cs
│ │ └── Mail.cs
│ ├── App_Data
│ ├── ASPNET2.0BaseCss.css
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Global.asax
│ ├── Images
│ │ ├── attach.gif
│ │ ├── bmp.bmp
│ │ ├── delete.gif
│ │ ├── dn.gif
│ │ ├── down.gif
│ │ ├── edit.gif
│ │ ├── exe.bmp
│ │ ├── ffwd.gif
│ │ ├── frew.gif
│ │ ├── fwd.gif
│ │ ├── lt.gif
│ │ ├── rew.gif
│ │ ├── rt.gif
│ │ ├── Thumbs.db
│ │ └── up.gif
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── LeftTree.aspx
│ ├── LeftTree.aspx.cs
│ ├── MailAttachments
│ │ ├── 20051515251748.gif
│ │ ├── folder.gif
│ │ ├── other.gif
│ │ ├── Thumbs.db
│ │ └── webmanage.jpg
│ ├── MailDesktop.aspx
│ ├── MailDesktop.aspx.cs
│ ├── Main.aspx
│ ├── Main.aspx.cs
│ ├── NewFolder.aspx
│ ├── NewFolder.aspx.cs
│ ├── Reader.aspx
│ ├── Reader.aspx.cs
│ ├── RenameFolder.aspx
│ ├── RenameFolder.aspx.cs
│ ├── Sender.aspx
│ ├── Sender.aspx.cs
│ ├── SystemProfile.aspx
│ ├── SystemProfile.aspx.cs
│ ├── ViewMail.aspx
│ ├── ViewMail.aspx.cs
│ ├── Web.Config
│ ├── WebEmail.sln
│ └── WebEmail.suo
├── ch12
│ ├── database
│ │ └── WebStatDB(0613)
│ └── WebStat
│ ├── App_Code
│ │ └── Visitor.cs
│ ├── App_Data
│ ├── ASPNET2.0BaseCss.css
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Global.asax
│ ├── Images
│ │ ├── 111.png
│ │ ├── 222.png
│ │ ├── 444.png
│ │ ├── bmp.bmp
│ │ ├── copyrightLine.jpg
│ │ ├── delete.gif
│ │ ├── down.gif
│ │ ├── edit.gif
│ │ ├── exe.bmp
│ │ ├── ffwd.gif
│ │ ├── folder.gif
│ │ ├── folder-up.gif
│ │ ├── frew.gif
│ │ ├── fwd.gif
│ │ ├── leftBand.jpg
│ │ ├── logoLeft.jpg
│ │ ├── logoRight.jpg
│ │ ├── lt.gif
│ │ ├── managehide.gif
│ │ ├── managequit.gif
│ │ ├── manageshow.gif
│ │ ├── menuline.jpg
│ │ ├── moduleheaher.gif
│ │ ├── navlink.gif
│ │ ├── navspacer.gif
│ │ ├── other.gif
│ │ ├── rew.gif
│ │ ├── rt.gif
│ │ ├── Thumbs.db
│ │ ├── topbar.gif
│ │ ├── treeroot.gif
│ │ ├── up.gif
│ │ ├── validator.jpg
│ │ └── vote.gif
│ ├── StatByBrowser.aspx
│ ├── StatByBrowser.aspx.cs
│ ├── StatByDay.aspx
│ ├── StatByDay.aspx.cs
│ ├── StatByMonth.aspx
│ ├── StatByMonth.aspx.cs
│ ├── StatByOS.aspx
│ ├── StatByOS.aspx.cs
│ ├── StatByWeek.aspx
│ ├── StatByWeek.aspx.cs
│ ├── StatByYear.aspx
│ ├── StatByYear.aspx.cs
│ ├── web.config
│ ├── WebStat.sln
│ └── WebStat.suo
├── ch13
│ ├── database
│ │ └── OnlineVoteDB(0613).bak
│ └── OnlineVote
│ ├── AddItem.aspx
│ ├── AddItem.aspx.cs
│ ├── AddSubject.aspx
│ ├── AddSubject.aspx.cs
│ ├── AddTopic.aspx
│ ├── AddTopic.aspx.cs
│ ├── App_Code
│ │ ├── DataClasses.dbml
│ │ ├── DataClasses.dbml.layout
│ │ ├── DataClasses.designer.cs
│ │ ├── IItem.cs
│ │ ├── ISubject.cs
│ │ ├── Item.cs
│ │ ├── ITopic.cs
│ │ ├── Subject.cs
│ │ ├── SystemTools.cs
│ │ ├── Topic.cs
│ │ └── User.cs
│ ├── App_Data
│ ├── ASPNET2.0BaseCss.css
│ ├── Default2.aspx
│ ├── Default2.aspx.cs
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Global.asax
│ ├── Images
│ │ ├── 111.png
│ │ ├── 222.png
│ │ ├── 444.png
│ │ ├── copyrightLine.jpg
│ │ ├── delete.gif
│ │ ├── down.gif
│ │ ├── edit.gif
│ │ ├── ffwd.gif
│ │ ├── frew.gif
│ │ ├── fwd.gif
│ │ ├── leftBand.jpg
│ │ ├── logoLeft.jpg
│ │ ├── logoRight.jpg
│ │ ├── lt.gif
│ │ ├── managehide.gif
│ │ ├── managequit.gif
│ │ ├── manageshow.gif
│ │ ├── menuline.jpg
│ │ ├── moduleheaher.gif
│ │ ├── navlink.gif
│ │ ├── navspacer.gif
│ │ ├── rew.gif
│ │ ├── rt.gif
│ │ ├── Thumbs.db
│ │ ├── topbar.gif
│ │ ├── treeroot.gif
│ │ ├── up.gif
│ │ ├── validator.jpg
│ │ └── vote.gif
│ ├── ItemManage.aspx
│ ├── ItemManage.aspx.cs
│ ├── ShowVote.aspx
│ ├── ShowVote.aspx.cs
│ ├── ShowVoteByPicture.aspx
│ ├── ShowVoteByPicture.aspx.cs
│ ├── SubjectManage.aspx
│ ├── SubjectManage.aspx.cs
│ ├── SystemProfile.aspx
│ ├── SystemProfile.aspx.cs
│ ├── TopicManage.aspx
│ ├── TopicManage.aspx.cs
│ ├── UpdateItem.aspx
│ ├── UpdateItem.aspx.cs
│ ├── UpdateSubject.aspx
│ ├── UpdateSubject.aspx.cs
│ ├── UpdateTopic.aspx
│ ├── UpdateTopic.aspx.cs
│ ├── ValidateImage.aspx
│ ├── ValidateImage.aspx.cs
│ ├── Vote.aspx
│ ├── Vote.aspx.cs
│ ├── VoteDesktop.aspx
│ ├── VoteDesktop.aspx.cs
│ └── web.config
└── ch14
├── database
│ └── ShoppingDB.bak
└── ShoppingCity
├── Admin
│ ├── Information
│ │ ├── AddNews.aspx
│ │ ├── AddNews.aspx.cs
│ │ ├── EditNews.aspx
│ │ ├── EditNews.aspx.cs
│ │ ├── LeavewordInfo.aspx
│ │ ├── LeavewordInfo.aspx.cs
│ │ ├── leavewordManage.aspx
│ │ ├── leavewordManage.aspx.cs
│ │ ├── NewsInfo.aspx
│ │ ├── NewsInfo.aspx.cs
│ │ ├── NewsManage.aspx
│ │ ├── NewsManage.aspx.cs
│ │ ├── Notice.aspx
│ │ └── Notice.aspx.cs
│ ├── Product
│ │ ├── AddCategory.aspx
│ │ ├── AddCategory.aspx.cs
│ │ ├── AddProduct.aspx
│ │ ├── AddProduct.aspx.cs
│ │ ├── Category.aspx
│ │ ├── Category.aspx.cs
│ │ ├── CommentInfo.aspx
│ │ ├── CommentInfo.aspx.cs
│ │ ├── CommentManage.aspx
│ │ ├── CommentManage.aspx.cs
│ │ ├── EditCategory.aspx
│ │ ├── EditCategory.aspx.cs
│ │ ├── EditProduct.aspx
│ │ ├── EditProduct.aspx.cs
│ │ ├── OrderManage.aspx
│ │ ├── OrderManage.aspx.cs
│ │ ├── ProductInfo.aspx
│ │ ├── ProductInfo.aspx.cs
│ │ ├── ProductLeft.aspx
│ │ ├── ProductLeft.aspx.cs
│ │ ├── ProductMain.aspx
│ │ ├── ProductMain.aspx.cs
│ │ ├── ProductManage.aspx
│ │ ├── ProductManage.aspx.cs
│ │ ├── ViewOrder.aspx
│ │ └── ViewOrder.aspx.cs
│ └── User
│ ├── AddAdminUser.aspx
│ ├── AddAdminUser.aspx.cs
│ ├── AddRole.aspx
│ ├── AddRole.aspx.cs
│ ├── EditRole.aspx
│ ├── EditRole.aspx.cs
│ ├── EditUser.aspx
│ ├── EditUser.aspx.cs
│ ├── EditUserPwd.aspx
│ ├── EditUserPwd.aspx.cs
│ ├── RoleManage.aspx
│ ├── RoleManage.aspx.cs
│ ├── UserInfo.aspx
│ ├── UserInfo.aspx.cs
│ ├── UserManage.aspx
│ └── UserManage.aspx.cs
├── App_Code
│ ├── Category.cs
│ ├── Comment.cs
│ ├── Data.cs
│ ├── OrderForm.cs
│ ├── Picture.cs
│ ├── Product.cs
│ ├── Role.cs
│ ├── SQLHelper.cs
│ └── User.cs
├── App_Data
├── Css
│ └── BaseCss.css
├── Default.aspx
├── Default.aspx.cs
├── Desktop
│ ├── AdvanceSearch.aspx
│ ├── AdvanceSearch.aspx.cs
│ ├── Cart.aspx
│ ├── Cart.aspx.cs
│ ├── Comment.aspx
│ ├── Comment.aspx.cs
│ ├── CommitRegister.aspx
│ ├── CommitRegister.aspx.cs
│ ├── leaveword.aspx
│ ├── leaveword.aspx.cs
│ ├── Order.aspx
│ ├── Order.aspx.cs
│ ├── Product.aspx
│ ├── Product.aspx.cs
│ ├── Register.aspx
│ ├── Register.aspx.cs
│ ├── Search.aspx
│ ├── Search.aspx.cs
│ ├── SellOrder.aspx
│ ├── SellOrder.aspx.cs
│ ├── UserLogin.aspx
│ ├── UserLogin.aspx.cs
│ ├── UserLogoff.aspx
│ ├── UserLogoff.aspx.cs
│ ├── ViewNotify.aspx
│ └── ViewNotify.aspx.cs
├── Images
│ ├── attach.gif
│ ├── delete.gif
│ ├── dn.gif
│ ├── down.gif
│ ├── edit.gif
│ ├── exe.bmp
│ ├── ffwd.gif
│ ├── frew.gif
│ ├── fwd.gif
│ ├── login.gif
│ ├── lt.gif
│ ├── moduleheaher.gif
│ ├── rew.gif
│ ├── rt.gif
│ └── up.gif
├── ShoppingCity.suo
├── UserControl
│ ├── AdminOperationUC.ascx
│ ├── AdminOperationUC.ascx.cs
│ ├── CustomerOperationUC.ascx
│ ├── CustomerOperationUC.ascx.cs
│ ├── MyOperationUC.ascx
│ ├── MyOperationUC.ascx.cs
│ ├── NewsUC.ascx
│ ├── NewsUC.ascx.cs
│ ├── NotifyUC.ascx
│ ├── NotifyUC.ascx.cs
│ ├── OperationUC.ascx
│ ├── OperationUC.ascx.cs
│ ├── ProductUC.ascx
│ └── ProductUC.ascx.cs
└── Web.Config
153 directories, 731 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论