实例介绍
十个项目!!保证有一个满意你的!!初学者易用1放心
【实例截图】
【核心代码】
16359647280632490554.rar
└── ASP.NET2005SQL Server2005项目开发(无密码)
└── ASP.NET2005SQL+Server2005项目开发(无密码)
└── 精通ASP.NET20+SQL Server2005项目开发
├── C02
│ ├── MyAddressList
│ │ ├── AddressAdd.aspx
│ │ ├── AddressAdd.aspx.cs
│ │ ├── AddressList.aspx
│ │ ├── AddressList.aspx.cs
│ │ ├── App_Data
│ │ ├── DB
│ │ │ ├── MyAddressList.bak
│ │ │ └── MyAddressList.sql
│ │ ├── Images
│ │ │ ├── ADD.GIF
│ │ │ ├── Logo.jpg
│ │ │ ├── OK.gif
│ │ │ └── Thumbs.db
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── ModifyPwd.aspx
│ │ ├── ModifyPwd.aspx.cs
│ │ ├── Register.aspx
│ │ ├── Register.aspx.cs
│ │ ├── Styles
│ │ │ └── Style.css
│ │ └── Web.Config
│ └── readme.txt
├── C03
│ ├── MyElectCourse
│ │ ├── adminCourse.aspx
│ │ ├── adminCourse.aspx.cs
│ │ ├── adminCourseDetails.aspx
│ │ ├── adminCourseDetails.aspx.cs
│ │ ├── adminStudentAdd.aspx
│ │ ├── adminStudentAdd.aspx.cs
│ │ ├── adminStudentDetails.aspx
│ │ ├── adminStudentDetails.aspx.cs
│ │ ├── adminStudentScore.aspx
│ │ ├── adminStudentScore.aspx.cs
│ │ ├── adminTeacherAdd.aspx
│ │ ├── adminTeacherAdd.aspx.cs
│ │ ├── adminTeacherDetails.aspx
│ │ ├── adminTeacherDetails.aspx.cs
│ │ ├── App_Data
│ │ │ ├── aspnetdb_log.ldf
│ │ │ └── ASPNETDB.MDF
│ │ ├── Controls
│ │ │ ├── left.ascx
│ │ │ └── left.ascx.cs
│ │ ├── courseDetail.aspx
│ │ ├── courseDetail.aspx.cs
│ │ ├── DB
│ │ │ ├── ElectClass.bak
│ │ │ ├── ElectClass.sql
│ │ │ └── ElectClass.sql.bak
│ │ ├── Images
│ │ │ ├── ADD.GIF
│ │ │ ├── Close.GIF
│ │ │ ├── CONFIRM.GIF
│ │ │ ├── FangKuai.gif
│ │ │ ├── Login.GIF
│ │ │ ├── mm.gif
│ │ │ ├── movetool1.gif
│ │ │ ├── movetoolright1.gif
│ │ │ ├── name.gif
│ │ │ ├── online_left.gif
│ │ │ ├── online_middle.gif
│ │ │ ├── online_right.gif
│ │ │ ├── QUERY.GIF
│ │ │ ├── RESET.GIF
│ │ │ ├── RETURN.GIF
│ │ │ └── SubmitScore.GIF
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── Main.aspx
│ │ ├── Main.aspx.cs
│ │ ├── ModifyPwd.aspx
│ │ ├── ModifyPwd.aspx.cs
│ │ ├── studentElect.aspx
│ │ ├── studentElect.aspx.cs
│ │ ├── teacherQueryElect.aspx
│ │ ├── teacherQueryElect.aspx.cs
│ │ ├── teacherSubmitScore.aspx
│ │ ├── teacherSubmitScore.aspx.cs
│ │ └── Web.Config
│ └── readme.txt
├── C04
│ ├── MyChatRoom
│ │ ├── App_Code
│ │ │ ├── BusinessLogicLayer
│ │ │ │ ├── Message.cs
│ │ │ │ └── User.cs
│ │ │ └── DataAccessLayer
│ │ │ └── Database.cs
│ │ ├── DB
│ │ │ └── MyChatRoom.sql
│ │ ├── Images
│ │ │ ├── logo.JPG
│ │ │ └── Thumbs.db
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── Main.aspx
│ │ ├── Main.aspx.cs
│ │ ├── ShowMessage.aspx
│ │ ├── ShowMessage.aspx.cs
│ │ ├── Speak.aspx
│ │ ├── Speak.aspx.cs
│ │ ├── Styles
│ │ │ └── Style.css
│ │ └── Web.config
│ └── readme.txt
├── C05
│ ├── MyBBS
│ │ ├── App_Code
│ │ │ ├── BusinessLogicLayer
│ │ │ │ ├── Reply.cs
│ │ │ │ ├── Topic.cs
│ │ │ │ └── User.cs
│ │ │ ├── DataAccessHelper
│ │ │ │ ├── GetSafeData.cs
│ │ │ │ └── SQLString.cs
│ │ │ └── DataAccessLayer
│ │ │ └── Database.cs
│ │ ├── App_Data
│ │ ├── DB
│ │ │ └── MyBBS.sql
│ │ ├── Images
│ │ │ ├── logo.JPG
│ │ │ └── Thumbs.db
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── Register.aspx
│ │ ├── Register.aspx.cs
│ │ ├── Styles
│ │ │ └── Style.css
│ │ ├── TopicAdd.aspx
│ │ ├── TopicAdd.aspx.cs
│ │ ├── TopicDetail.aspx
│ │ ├── TopicDetail.aspx.cs
│ │ ├── TopicList.aspx
│ │ ├── TopicList.aspx.cs
│ │ ├── TopicReply.aspx
│ │ ├── TopicReply.aspx.cs
│ │ ├── TopicUpdate.aspx
│ │ ├── TopicUpdate.aspx.cs
│ │ └── Web.config
│ └── readme.txt
├── C06
│ ├── MyLibrary
│ │ ├── adminLogin.aspx
│ │ ├── adminLogin.aspx.cs
│ │ ├── adminMain.aspx
│ │ ├── adminMain.aspx.cs
│ │ ├── App_Code
│ │ │ ├── BusinessLogicLayer
│ │ │ │ ├── Book.cs
│ │ │ │ ├── Borrow.cs
│ │ │ │ └── Users.cs
│ │ │ ├── DataAccessHelper
│ │ │ │ ├── GetSafeData.cs
│ │ │ │ └── SQLString.cs
│ │ │ └── DataAccessLayer
│ │ │ └── DataBase.cs
│ │ ├── BookManage
│ │ │ ├── AdminBookAdvancedSearch.aspx
│ │ │ ├── AdminBookAdvancedSearch.aspx.cs
│ │ │ ├── BookAdd.aspx
│ │ │ ├── BookAdd.aspx.cs
│ │ │ ├── BookDetails.aspx
│ │ │ ├── BookDetails.aspx.cs
│ │ │ ├── BookLists.aspx
│ │ │ ├── BookLists.aspx.cs
│ │ │ ├── BookSearch.aspx
│ │ │ ├── BookSearch.aspx.cs
│ │ │ ├── BookSearchResult.aspx
│ │ │ ├── BookSearchResult.aspx.cs
│ │ │ ├── ReaderBookAdvancedSearch.aspx
│ │ │ ├── ReaderBookAdvancedSearch.aspx.cs
│ │ │ ├── ReaderBookDetails.aspx
│ │ │ └── ReaderBookDetails.aspx.cs
│ │ ├── Borrow
│ │ │ ├── BorrowBook.aspx
│ │ │ ├── BorrowBook.aspx.cs
│ │ │ ├── ReturnBook.aspx
│ │ │ └── ReturnBook.aspx.cs
│ │ ├── Controls
│ │ │ ├── AdminLeft.ascx
│ │ │ ├── AdminLeft.ascx.cs
│ │ │ ├── ReaderLogin.ascx
│ │ │ ├── ReaderLogin.ascx.cs
│ │ │ ├── ReaderTop.ascx
│ │ │ └── ReaderTop.ascx.cs
│ │ ├── DB
│ │ │ ├── MyLibrary.bak
│ │ │ └── MyLibrary.sql
│ │ ├── Images
│ │ │ ├── ADD.GIF
│ │ │ ├── Borrow.GIF
│ │ │ ├── Close.GIF
│ │ │ ├── CONFIRM.GIF
│ │ │ ├── FangKuai.gif
│ │ │ ├── Login.GIF
│ │ │ ├── mm.gif
│ │ │ ├── movetool1.gif
│ │ │ ├── movetoolright1.gif
│ │ │ ├── name.gif
│ │ │ ├── online_left.gif
│ │ │ ├── online_middle.gif
│ │ │ ├── online_right.gif
│ │ │ ├── QUERY.GIF
│ │ │ ├── RESET.GIF
│ │ │ ├── ReturnBook.GIF
│ │ │ ├── RETURN.GIF
│ │ │ ├── search.GIF
│ │ │ ├── SubmitScore.GIF
│ │ │ └── Update.GIF
│ │ ├── ModifyPassword.aspx
│ │ ├── ModifyPassword.aspx.cs
│ │ ├── Reader
│ │ │ ├── ReaderBorrowHistory.aspx
│ │ │ ├── ReaderBorrowHistory.aspx.cs
│ │ │ ├── ReaderCurrentBorrow.aspx
│ │ │ ├── ReaderCurrentBorrow.aspx.cs
│ │ │ ├── ReaderExpireCuiHuan.aspx
│ │ │ ├── ReaderExpireCuiHuan.aspx.cs
│ │ │ ├── ReaderInformation.aspx
│ │ │ ├── ReaderInformation.aspx.cs
│ │ │ ├── ReaderLogin.aspx
│ │ │ ├── ReaderLogin.aspx.cs
│ │ │ ├── ReaderLoginMain.aspx
│ │ │ ├── ReaderLoginMain.aspx.cs
│ │ │ ├── ReaderNotLogin.aspx
│ │ │ └── ReaderNotLogin.aspx.cs
│ │ ├── UsersManage
│ │ │ ├── UserAdd.aspx
│ │ │ ├── UserAdd.aspx.cs
│ │ │ ├── UserDetails.aspx
│ │ │ ├── UserDetails.aspx.cs
│ │ │ ├── UserLists.aspx
│ │ │ └── UserLists.aspx.cs
│ │ └── Web.Config
│ └── readme.txt
├── C07
│ ├── MyOnLineExam
│ │ ├── App_Code
│ │ │ ├── BusinessLogicLayer
│ │ │ │ ├── Course.cs
│ │ │ │ ├── FillBlankProblem.cs
│ │ │ │ ├── JudgeProblem.cs
│ │ │ │ ├── MultiProblem.cs
│ │ │ │ ├── Paper.cs
│ │ │ │ ├── Scores.cs
│ │ │ │ ├── SingleProblem.cs
│ │ │ │ └── Users.cs
│ │ │ ├── DataAccessHelper
│ │ │ │ ├── GetSafeData.cs
│ │ │ │ └── SQLString.cs
│ │ │ └── DataAccessLayer
│ │ │ └── DataBase.cs
│ │ ├── App_Data
│ │ ├── Controls
│ │ │ ├── admin_left.ascx
│ │ │ └── admin_left.ascx.cs
│ │ ├── DB
│ │ │ ├── MyOnLineExam.bak
│ │ │ └── MyOnLineExam.sql
│ │ ├── Images
│ │ │ ├── Answer.GIF
│ │ │ ├── Confirm.GIF
│ │ │ ├── Delete.GIF
│ │ │ ├── Excel.GIF
│ │ │ ├── ico_Xp01.gif
│ │ │ ├── ico_Xp02.gif
│ │ │ ├── ico_Xp03.gif
│ │ │ ├── ico_Xp04.gif
│ │ │ ├── ico_Xp05.gif
│ │ │ ├── ico_Xp06.gif
│ │ │ ├── ico_Xp07.gif
│ │ │ ├── ico_Xp08.gif
│ │ │ ├── ico_Xp09.gif
│ │ │ ├── ico_Xp10.gif
│ │ │ ├── ico_Xp11.gif
│ │ │ ├── ico_Xp12.gif
│ │ │ ├── ico_Xp13.gif
│ │ │ ├── ico_Xp14.gif
│ │ │ ├── ico_Xp15.gif
│ │ │ ├── left_bg_01.gif
│ │ │ ├── left_bg_01.jpg
│ │ │ ├── left_bg_02.jpg
│ │ │ ├── left_bg_03.jpg
│ │ │ ├── Login.GIF
│ │ │ ├── Return.GIF
│ │ │ ├── Save.GIF
│ │ │ ├── Submit.GIF
│ │ │ └── Update.GIF
│ │ ├── Module01.xls
│ │ ├── Web
│ │ │ ├── admin_CourseAdd.aspx
│ │ │ ├── admin_CourseAdd.aspx.cs
│ │ │ ├── admin_CourseLists.aspx
│ │ │ ├── admin_CourseLists.aspx.cs
│ │ │ ├── admin_FillBlankAdd.aspx
│ │ │ ├── admin_FillBlankAdd.aspx.cs
│ │ │ ├── admin_FillBlankLists.aspx
│ │ │ ├── admin_FillBlankLists.aspx.cs
│ │ │ ├── admin_JudgeAdd.aspx
│ │ │ ├── admin_JudgeAdd.aspx.cs
│ │ │ ├── admin_JudgeLists.aspx
│ │ │ ├── admin_JudgeLists.aspx.cs
│ │ │ ├── admin_Login.aspx
│ │ │ ├── admin_Login.aspx.cs
│ │ │ ├── adminMain.aspx
│ │ │ ├── adminMain.aspx.cs
│ │ │ ├── admin_MultiSelectAdd.aspx
│ │ │ ├── admin_MultiSelectAdd.aspx.cs
│ │ │ ├── admin_MultiSelectLists.aspx
│ │ │ ├── admin_MultiSelectLists.aspx.cs
│ │ │ ├── admin_PaperLists.aspx
│ │ │ ├── admin_PaperLists.aspx.cs
│ │ │ ├── admin_PaperSetup.aspx
│ │ │ ├── admin_PaperSetup.aspx.cs
│ │ │ ├── admin_SingleSelectAdd.aspx
│ │ │ ├── admin_SingleSelectAdd.aspx.cs
│ │ │ ├── admin_SingleSelectLists.aspx
│ │ │ ├── admin_SingleSelectLists.aspx.cs
│ │ │ ├── admin_UserAdd.aspx
│ │ │ ├── admin_UserAdd.aspx.cs
│ │ │ ├── admin_UserLists.aspx
│ │ │ ├── admin_UserLists.aspx.cs
│ │ │ ├── admin_UserScore.aspx
│ │ │ ├── admin_UserScore.aspx.cs
│ │ │ ├── Login.aspx
│ │ │ ├── Login.aspx.cs
│ │ │ ├── Temp
│ │ │ ├── TestAnswer.aspx
│ │ │ ├── TestAnswer.aspx.cs
│ │ │ ├── UserTest.aspx
│ │ │ └── UserTest.aspx.cs
│ │ └── Web.Config
│ └── readme.txt
├── C08
│ ├── HRManager
│ │ ├── Admin.aspx
│ │ ├── Admin.aspx.cs
│ │ ├── Affix
│ │ ├── App_Code
│ │ │ ├── BusinessLogicLayer
│ │ │ │ ├── City.cs
│ │ │ │ ├── Job.cs
│ │ │ │ ├── JobType.cs
│ │ │ │ └── Resume.cs
│ │ │ ├── CommonComponent
│ │ │ │ ├── Encrypt.cs
│ │ │ │ ├── EventsLog.cs
│ │ │ │ ├── log4net
│ │ │ │ │ └── log4net.dll
│ │ │ │ └── ValidateCode.cs
│ │ │ ├── DataAccessHelper
│ │ │ │ ├── GetSafeData.cs
│ │ │ │ └── SQLString.cs
│ │ │ └── DataAccessLayeer
│ │ │ └── Database.cs
│ │ ├── Bin
│ │ │ ├── log4net.dll
│ │ │ └── log4net.dll.refresh
│ │ ├── DB
│ │ │ └── HRManager.sql
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── ErrorReport.aspx
│ │ ├── ErrorReport.aspx.cs
│ │ ├── Global.asax
│ │ ├── Images
│ │ │ ├── BtnAdd.gif
│ │ │ ├── BtnBack.gif
│ │ │ ├── BtnDelete.gif
│ │ │ ├── BtnDetail.gif
│ │ │ ├── BtnDispose.gif
│ │ │ ├── BtnGiant.gif
│ │ │ ├── BtnLogin.gif
│ │ │ ├── BtnQuery.gif
│ │ │ ├── BtnResetPassword.gif
│ │ │ ├── BtnSave.gif
│ │ │ ├── BtnSubmit.gif
│ │ │ ├── BtnUpdate.gif
│ │ │ ├── folder.gif
│ │ │ ├── folderopen.gif
│ │ │ ├── logo.JPG
│ │ │ ├── Thumbs.db
│ │ │ └── ValidateCode
│ │ │ ├── Thumbs.db
│ │ │ └── xnhr.Png
│ │ ├── JobAdd.aspx
│ │ ├── JobAdd.aspx.cs
│ │ ├── JobApply.aspx
│ │ ├── JobApply.aspx.cs
│ │ ├── JobDetail.aspx
│ │ ├── JobDetail.aspx.cs
│ │ ├── JobList.aspx
│ │ ├── JobList.aspx.cs
│ │ ├── JobQuery.aspx
│ │ ├── JobQuery.aspx.cs
│ │ ├── Log
│ │ │ ├── HRManager.log
│ │ │ └── HRManager.log.bak
│ │ ├── MasterPage.master
│ │ ├── MasterPage.master.cs
│ │ ├── ResumeDetail.aspx
│ │ ├── ResumeDetail.aspx.cs
│ │ ├── ResumeQuery.aspx
│ │ ├── ResumeQuery.aspx.cs
│ │ ├── Styles
│ │ │ └── Style.css
│ │ ├── Thumbs.db
│ │ ├── UserControls
│ │ │ ├── Include
│ │ │ │ ├── applicant.xml
│ │ │ │ └── manager.xml
│ │ │ ├── LeftTree.ascx
│ │ │ └── LeftTree.ascx.cs
│ │ └── Web.config
│ ├── log4net
│ │ ├── Appender
│ │ │ ├── AdoNetAppender.cs
│ │ │ ├── AnsiColorTerminalAppender.cs
│ │ │ ├── AppenderCollection.cs
│ │ │ ├── AppenderSkeleton.cs
│ │ │ ├── AspNetTraceAppender.cs
│ │ │ ├── BufferingAppenderSkeleton.cs
│ │ │ ├── BufferingForwardingAppender.cs
│ │ │ ├── ColoredConsoleAppender.cs
│ │ │ ├── ConsoleAppender.cs
│ │ │ ├── DebugAppender.cs
│ │ │ ├── EventLogAppender.cs
│ │ │ ├── FileAppender.cs
│ │ │ ├── ForwardingAppender.cs
│ │ │ ├── IAppender.cs
│ │ │ ├── IBulkAppender.cs
│ │ │ ├── LocalSyslogAppender.cs
│ │ │ ├── MemoryAppender.cs
│ │ │ ├── NetSendAppender.cs
│ │ │ ├── OutputDebugStringAppender.cs
│ │ │ ├── RemoteSyslogAppender.cs
│ │ │ ├── RemotingAppender.cs
│ │ │ ├── RollingFileAppender.cs
│ │ │ ├── SmtpAppender.cs
│ │ │ ├── SmtpPickupDirAppender.cs
│ │ │ ├── TelnetAppender.cs
│ │ │ ├── TextWriterAppender.cs
│ │ │ ├── TraceAppender.cs
│ │ │ └── UdpAppender.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── AssemblyVersionInfo.cpp
│ │ ├── AssemblyVersionInfo.cs
│ │ ├── AssemblyVersionInfo.js
│ │ ├── AssemblyVersionInfo.vb
│ │ ├── bin
│ │ │ └── debug
│ │ │ ├── log4net.dll
│ │ │ ├── log4net.pdb
│ │ │ └── log4net.xml
│ │ ├── Config
│ │ │ ├── AliasDomainAttribute.cs
│ │ │ ├── AliasRepositoryAttribute.cs
│ │ │ ├── BasicConfigurator.cs
│ │ │ ├── ConfiguratorAttribute.cs
│ │ │ ├── DomainAttribute.cs
│ │ │ ├── DOMConfiguratorAttribute.cs
│ │ │ ├── DOMConfigurator.cs
│ │ │ ├── Log4NetConfigurationSectionHandler.cs
│ │ │ ├── PluginAttribute.cs
│ │ │ ├── RepositoryAttribute.cs
│ │ │ ├── SecurityContextProviderAttribute.cs
│ │ │ ├── XmlConfiguratorAttribute.cs
│ │ │ └── XmlConfigurator.cs
│ │ ├── Core
│ │ │ ├── CompactRepositorySelector.cs
│ │ │ ├── DefaultRepositorySelector.cs
│ │ │ ├── ErrorCode.cs
│ │ │ ├── IAppenderAttachable.cs
│ │ │ ├── IErrorHandler.cs
│ │ │ ├── IFixingRequired.cs
│ │ │ ├── ILogger.cs
│ │ │ ├── ILoggerWrapper.cs
│ │ │ ├── IOptionHandler.cs
│ │ │ ├── IRepositorySelector.cs
│ │ │ ├── ITriggeringEventEvaluator.cs
│ │ │ ├── LevelCollection.cs
│ │ │ ├── Level.cs
│ │ │ ├── LevelEvaluator.cs
│ │ │ ├── LevelMap.cs
│ │ │ ├── LocationInfo.cs
│ │ │ ├── LogException.cs
│ │ │ ├── LoggerManager.cs
│ │ │ ├── LoggerWrapperImpl.cs
│ │ │ ├── LoggingEvent.cs
│ │ │ ├── LogImpl.cs
│ │ │ ├── SecurityContext.cs
│ │ │ ├── SecurityContextProvider.cs
│ │ │ └── WrapperMap.cs
│ │ ├── DateFormatter
│ │ │ ├── AbsoluteTimeDateFormatter.cs
│ │ │ ├── DateTimeDateFormatter.cs
│ │ │ ├── IDateFormatter.cs
│ │ │ ├── Iso8601DateFormatter.cs
│ │ │ └── SimpleDateFormatter.cs
│ │ ├── Filter
│ │ │ ├── DenyAllFilter.cs
│ │ │ ├── FilterDecision.cs
│ │ │ ├── FilterSkeleton.cs
│ │ │ ├── IFilter.cs
│ │ │ ├── LevelMatchFilter.cs
│ │ │ ├── LevelRangeFilter.cs
│ │ │ ├── LoggerMatchFilter.cs
│ │ │ ├── MdcFilter.cs
│ │ │ ├── NdcFilter.cs
│ │ │ ├── PropertyFilter.cs
│ │ │ └── StringMatchFilter.cs
│ │ ├── GlobalContext.cs
│ │ ├── ILog.cs
│ │ ├── Layout
│ │ │ ├── ExceptionLayout.cs
│ │ │ ├── ILayout.cs
│ │ │ ├── IRawLayout.cs
│ │ │ ├── Layout2RawLayoutAdapter.cs
│ │ │ ├── LayoutSkeleton.cs
│ │ │ ├── Pattern
│ │ │ │ ├── AppDomainPatternConverter.cs
│ │ │ │ ├── DatePatternConverter.cs
│ │ │ │ ├── ExceptionPatternConverter.cs
│ │ │ │ ├── FileLocationPatternConverter.cs
│ │ │ │ ├── FullLocationPatternConverter.cs
│ │ │ │ ├── IdentityPatternConverter.cs
│ │ │ │ ├── LevelPatternConverter.cs
│ │ │ │ ├── LineLocationPatternConverter.cs
│ │ │ │ ├── LoggerPatternConverter.cs
│ │ │ │ ├── MessagePatternConverter.cs
│ │ │ │ ├── MethodLocationPatternConverter.cs
│ │ │ │ ├── NamedPatternConverter.cs
│ │ │ │ ├── NdcPatternConverter.cs
│ │ │ │ ├── PatternLayoutConverter.cs
│ │ │ │ ├── PropertyPatternConverter.cs
│ │ │ │ ├── RelativeTimePatternConverter.cs
│ │ │ │ ├── ThreadPatternConverter.cs
│ │ │ │ ├── TypeNamePatternConverter.cs
│ │ │ │ ├── UserNamePatternConverter.cs
│ │ │ │ └── UtcDatePatternConverter.cs
│ │ │ ├── PatternLayout.cs
│ │ │ ├── RawLayoutConverter.cs
│ │ │ ├── RawPropertyLayout.cs
│ │ │ ├── RawTimeStampLayout.cs
│ │ │ ├── RawUtcTimeStampLayout.cs
│ │ │ ├── SimpleLayout.cs
│ │ │ ├── XMLLayoutBase.cs
│ │ │ ├── XMLLayout.cs
│ │ │ └── XmlLayoutSchemaLog4j.cs
│ │ ├── log4net.csproj
│ │ ├── log4net.sln
│ │ ├── log4net.xml
│ │ ├── LogicalThreadContext.cs
│ │ ├── LogManager.cs
│ │ ├── MDC.cs
│ │ ├── NDC.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── log4net.dll
│ │ │ │ ├── log4net.pdb
│ │ │ │ └── TempPE
│ │ │ └── log4net.csproj.FileList.txt
│ │ ├── ObjectRenderer
│ │ │ ├── DefaultRenderer.cs
│ │ │ ├── IObjectRenderer.cs
│ │ │ └── RendererMap.cs
│ │ ├── Plugin
│ │ │ ├── IPlugin.cs
│ │ │ ├── IPluginFactory.cs
│ │ │ ├── PluginCollection.cs
│ │ │ ├── PluginMap.cs
│ │ │ ├── PluginSkeleton.cs
│ │ │ └── RemoteLoggingServerPlugin.cs
│ │ ├── Repository
│ │ │ ├── Hierarchy
│ │ │ │ ├── DefaultLoggerFactory.cs
│ │ │ │ ├── Hierarchy.cs
│ │ │ │ ├── ILoggerFactory.cs
│ │ │ │ ├── Logger.cs
│ │ │ │ ├── LoggerKey.cs
│ │ │ │ ├── ProvisionNode.cs
│ │ │ │ ├── RootLogger.cs
│ │ │ │ └── XmlHierarchyConfigurator.cs
│ │ │ ├── IBasicRepositoryConfigurator.cs
│ │ │ ├── ILoggerRepository.cs
│ │ │ ├── IXmlRepositoryConfigurator.cs
│ │ │ └── LoggerRepositorySkeleton.cs
│ │ ├── ThreadContext.cs
│ │ └── Util
│ │ ├── AppenderAttachedImpl.cs
│ │ ├── CompositeProperties.cs
│ │ ├── ContextPropertiesBase.cs
│ │ ├── CountingQuietTextWriter.cs
│ │ ├── CyclicBuffer.cs
│ │ ├── EmptyCollection.cs
│ │ ├── EmptyDictionary.cs
│ │ ├── FormattingInfo.cs
│ │ ├── GlobalContextProperties.cs
│ │ ├── LevelMapping.cs
│ │ ├── LevelMappingEntry.cs
│ │ ├── LogicalThreadContextProperties.cs
│ │ ├── LogLog.cs
│ │ ├── NativeError.cs
│ │ ├── NullDictionaryEnumerator.cs
│ │ ├── NullEnumerator.cs
│ │ ├── NullSecurityContext.cs
│ │ ├── OnlyOnceErrorHandler.cs
│ │ ├── OptionConverter.cs
│ │ ├── PatternConverter.cs
│ │ ├── PatternParser.cs
│ │ ├── PatternStringConverters
│ │ │ ├── AppDomainPatternConverter.cs
│ │ │ ├── DatePatternConverter.cs
│ │ │ ├── EnvironmentPatternConverter.cs
│ │ │ ├── IdentityPatternConverter.cs
│ │ │ ├── LiteralPatternConverter.cs
│ │ │ ├── NewLinePatternConverter.cs
│ │ │ ├── ProcessIdPatternConverter.cs
│ │ │ ├── PropertyPatternConverter.cs
│ │ │ ├── RandomStringPatternConverter.cs
│ │ │ ├── UserNamePatternConverter.cs
│ │ │ └── UtcDatePatternConverter.cs
│ │ ├── PatternString.cs
│ │ ├── PropertiesDictionary.cs
│ │ ├── ProtectCloseTextWriter.cs
│ │ ├── QuietTextWriter.cs
│ │ ├── ReaderWriterLock.cs
│ │ ├── ReadOnlyPropertiesDictionary.cs
│ │ ├── ReusableStringWriter.cs
│ │ ├── SystemInfo.cs
│ │ ├── SystemStringFormat.cs
│ │ ├── TextWriterAdapter.cs
│ │ ├── ThreadContextProperties.cs
│ │ ├── ThreadContextStack.cs
│ │ ├── ThreadContextStacks.cs
│ │ ├── Transform.cs
│ │ ├── TypeConverters
│ │ │ ├── BooleanConverter.cs
│ │ │ ├── ConversionNotSupportedException.cs
│ │ │ ├── ConverterRegistry.cs
│ │ │ ├── EncodingConverter.cs
│ │ │ ├── IConvertFrom.cs
│ │ │ ├── IConvertTo.cs
│ │ │ ├── IPAddressConverter.cs
│ │ │ ├── PatternLayoutConverter.cs
│ │ │ ├── PatternStringConverter.cs
│ │ │ ├── TypeConverterAttribute.cs
│ │ │ └── TypeConverter.cs
│ │ └── WindowsSecurityContext.cs
│ └── readme.txt
├── C09
│ ├── MyBookShop
│ │ ├── App_Code
│ │ │ ├── BusinessLogicHelper
│ │ │ │ ├── BookHelper.cs
│ │ │ │ ├── UserHelper.cs
│ │ │ │ └── ValidateUtility.cs
│ │ │ ├── BusinessLogicLayer
│ │ │ │ ├── Book.cs
│ │ │ │ ├── Cart.cs
│ │ │ │ ├── Category.cs
│ │ │ │ ├── Chart.cs
│ │ │ │ └── User.cs
│ │ │ ├── DataAccessHelper
│ │ │ │ ├── GetSafeData.cs
│ │ │ │ └── SQLString.cs
│ │ │ └── DataAccessLayer
│ │ │ └── Database.cs
│ │ ├── Bill.aspx
│ │ ├── Bill.aspx.cs
│ │ ├── BookAdd.aspx
│ │ ├── BookAdd.aspx.cs
│ │ ├── BookDetail.aspx
│ │ ├── BookDetail.aspx.cs
│ │ ├── BookList.aspx
│ │ ├── BookList.aspx.cs
│ │ ├── BookPics
│ │ │ └── Thumbs.db
│ │ ├── BookStatistics.aspx
│ │ ├── BookStatistics.aspx.cs
│ │ ├── CartView.aspx
│ │ ├── CartView.aspx.cs
│ │ ├── DB
│ │ │ ├── MyBookShop.bak
│ │ │ └── MyBookShop.sql
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Images
│ │ │ ├── Category.gif
│ │ │ ├── logo.JPG
│ │ │ ├── Price.gif
│ │ │ ├── Publiser.gif
│ │ │ └── Thumbs.db
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── Register.aspx
│ │ ├── Register.aspx.cs
│ │ ├── Styles
│ │ │ └── Style.css
│ │ ├── UserControls
│ │ │ ├── headermenu.ascx
│ │ │ ├── HeaderMenu.ascx.cs
│ │ │ ├── HeaderMenu.ascx.resx
│ │ │ ├── usercheck.ascx
│ │ │ ├── UserCheck.ascx.cs
│ │ │ └── UserCheck.ascx.resx
│ │ └── Web.config
│ └── readme.txt
├── C10
│ ├── MyOA
│ │ ├── Affix
│ │ ├── App_Code
│ │ │ ├── BusinessLogicHelper
│ │ │ │ ├── FileHelper.cs
│ │ │ │ └── ValidateUtility.cs
│ │ │ ├── BusinessLogicLayer
│ │ │ │ ├── Department.cs
│ │ │ │ ├── File.cs
│ │ │ │ ├── FileStatus.cs
│ │ │ │ ├── Plan.cs
│ │ │ │ ├── Role.cs
│ │ │ │ └── User.cs
│ │ │ ├── CommonComponent
│ │ │ │ ├── Encrypt.cs
│ │ │ │ ├── EventsLog.cs
│ │ │ │ └── Tree.cs
│ │ │ ├── DataAccessHelper
│ │ │ │ ├── GetSafeData.cs
│ │ │ │ └── SQLString.cs
│ │ │ └── DataAccessLayeer
│ │ │ └── Database.cs
│ │ ├── DB
│ │ │ ├── MyOA_CreateTable.sql
│ │ │ ├── MyOA_InitData.sql
│ │ │ └── readme.txt
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── FileAdd.aspx
│ │ ├── FileAdd.aspx.cs
│ │ ├── FileDetail.aspx
│ │ ├── FileDetail.aspx.cs
│ │ ├── FileList.aspx
│ │ ├── FileList.aspx.cs
│ │ ├── Images
│ │ │ ├── BtnAdd.gif
│ │ │ ├── BtnBack.gif
│ │ │ ├── BtnDelete.gif
│ │ │ ├── BtnDetail.gif
│ │ │ ├── BtnDispose.gif
│ │ │ ├── BtnGiant.gif
│ │ │ ├── BtnLogin.gif
│ │ │ ├── BtnQuery.gif
│ │ │ ├── BtnResetPassword.gif
│ │ │ ├── BtnSave.gif
│ │ │ ├── BtnSubmit.gif
│ │ │ ├── BtnUpdate.gif
│ │ │ ├── folder.gif
│ │ │ ├── folderopen.gif
│ │ │ ├── Log
│ │ │ │ ├── error.gif
│ │ │ │ ├── failureaudit.gif
│ │ │ │ ├── Thumbs.db
│ │ │ │ └── Warning.gif
│ │ │ ├── logo.jpg
│ │ │ └── Thumbs.db
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── LogView.aspx
│ │ ├── LogView.aspx.cs
│ │ ├── PlanList.aspx
│ │ ├── PlanList.aspx.cs
│ │ ├── RoleManage.aspx
│ │ ├── RoleManage.aspx.cs
│ │ ├── Styles
│ │ │ └── Style.css
│ │ ├── UserAdd.aspx
│ │ ├── UserAdd.aspx.cs
│ │ ├── UserControls
│ │ │ ├── editor_images
│ │ │ │ ├── Bold.gif
│ │ │ │ ├── centre.gif
│ │ │ │ ├── Copy.gif
│ │ │ │ ├── Cut.gif
│ │ │ │ ├── help.gif
│ │ │ │ ├── hr.gif
│ │ │ │ ├── indent.gif
│ │ │ │ ├── Italics.gif
│ │ │ │ ├── left.gif
│ │ │ │ ├── link.gif
│ │ │ │ ├── new.gif
│ │ │ │ ├── outdent.gif
│ │ │ │ ├── para_bul.gif
│ │ │ │ ├── para_num.gif
│ │ │ │ ├── Paste.gif
│ │ │ │ ├── right.gif
│ │ │ │ ├── save.gif
│ │ │ │ ├── Thumbs.db
│ │ │ │ └── underline.gif
│ │ │ ├── lefttree.ascx
│ │ │ ├── LeftTree.ascx.cs
│ │ │ └── LeftTree.ascx.resx
│ │ ├── UserList.aspx
│ │ ├── UserList.aspx.cs
│ │ ├── UserResetPwd.aspx
│ │ ├── UserResetPwd.aspx.cs
│ │ ├── UserUpdate.aspx
│ │ ├── UserUpdate.aspx.cs
│ │ └── web.config
│ └── readme.txt
└── 光盘使用说明.DOC
122 directories, 696 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论