实例介绍
博客引擎 时间跟踪系统 图书馆管理信息系统 在线求职系统 中小型企业网站
【实例截图】
【核心代码】
4744302543329978445.rar
└── 典型系统
├── 中小型企业网站
│ ├── About.aspx
│ ├── About.aspx.cs
│ ├── App_Code
│ │ ├── Catalog
│ │ │ ├── Catalog.cs
│ │ │ ├── CatalogProvider.cs
│ │ │ ├── Category.cs
│ │ │ ├── Item.cs
│ │ │ ├── SqlCatalogProvider.cs
│ │ │ └── XmlCatalogProvider.cs
│ │ ├── ClassDiagram.cd
│ │ ├── Messages.cs
│ │ ├── News
│ │ │ ├── News.cs
│ │ │ ├── NewsItem.cs
│ │ │ ├── NewsProvider.cs
│ │ │ ├── SqlNewsProvider.cs
│ │ │ └── XmlNewsProvider.cs
│ │ ├── People
│ │ │ ├── People.cs
│ │ │ ├── PeopleProvider.cs
│ │ │ ├── Person.cs
│ │ │ ├── SqlPeopleProvider.cs
│ │ │ └── XmlPeopleProvider.cs
│ │ ├── ProviderSettingsValidation.cs
│ │ ├── SmallBusinessDataProvidersSection.cs
│ │ ├── Testimonials
│ │ │ ├── SqlTestimonialProvider.cs
│ │ │ ├── Testimonial.cs
│ │ │ ├── TestimonialProvider.cs
│ │ │ ├── Testimonials.cs
│ │ │ └── XmlTestimonialProvider.cs
│ │ └── Util.cs
│ ├── App_Data
│ │ ├── Items.xml
│ │ ├── News.xml
│ │ ├── People.xml
│ │ ├── schemas
│ │ │ ├── Items.xsd
│ │ │ ├── Items.xss
│ │ │ ├── News.xsd
│ │ │ ├── News.xsx
│ │ │ ├── People.xsd
│ │ │ ├── People.xsx
│ │ │ ├── Testimonials.xsd
│ │ │ └── Testimonials.xsx
│ │ ├── SetupDatabase.sql
│ │ ├── SmallCompanyDB_log.ldf
│ │ ├── SmallCompanyDB.mdf
│ │ └── Testimonials.xml
│ ├── App_Themes
│ │ ├── css-print.css
│ │ └── Standard
│ │ └── css-content.css
│ ├── Contact.aspx
│ ├── Contact.aspx.cs
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── Eula.htm
│ ├── images
│ │ ├── arrow.gif
│ │ ├── bg-active.png
│ │ ├── bg-content-side.png
│ │ ├── bg-nav.png
│ │ ├── bg-nav-side.png
│ │ ├── bg-photo.png
│ │ ├── bg-quote.png
│ │ ├── bg-three-column-home.png
│ │ ├── bg-three-column-main.png
│ │ ├── cat01.jpg
│ │ ├── cat02.jpg
│ │ ├── cat03.jpg
│ │ ├── cat04.jpg
│ │ ├── cat05.jpg
│ │ ├── cat06.jpg
│ │ ├── cat07.jpg
│ │ ├── cat08.jpg
│ │ ├── corp_blue_arrow.gif
│ │ ├── corp_blue_logo_glb.jpg
│ │ ├── corp_blue_logo_home.jpg
│ │ ├── corp_blue_nav_bg_l.gif
│ │ ├── corp_blue_nav_bg_r.gif
│ │ ├── corp_blue_nav_bl.gif
│ │ ├── corp_blue_nav_br.gif
│ │ ├── corp_blue_nav_tl.gif
│ │ ├── corp_blue_nav_tl.jpg
│ │ ├── corp_blue_nav_tr.gif
│ │ ├── corp_blue_nav_tr.jpg
│ │ ├── favicon.ico
│ │ ├── home-photo-1.jpg
│ │ ├── home-photo-2.jpg
│ │ ├── home-photo-3.jpg
│ │ ├── item01.jpg
│ │ ├── item02.jpg
│ │ ├── list-bullet-01.gif
│ │ ├── list-bullet-01-link.gif
│ │ ├── list-bullet-02.gif
│ │ ├── list-bullet-02-link.gif
│ │ ├── news1.jpg
│ │ ├── news-2.jpg
│ │ ├── news2.jpg
│ │ ├── news.jpg
│ │ ├── person-1.jpg
│ │ ├── person-2.jpg
│ │ ├── person-3.jpg
│ │ ├── person-4.jpg
│ │ ├── person-5.jpg
│ │ ├── person-6.jpg
│ │ ├── person-7.jpg
│ │ ├── photo-poster.jpg
│ │ ├── product-small-10.jpg
│ │ ├── product-small-11.jpg
│ │ ├── product-small-12.jpg
│ │ ├── product-small-13.jpg
│ │ ├── product-small-1.jpg
│ │ ├── product-small-2.jpg
│ │ ├── product-small-3.jpg
│ │ ├── product-small-4.jpg
│ │ ├── product-small-5.jpg
│ │ ├── product-small-6.jpg
│ │ ├── product-small-7.jpg
│ │ ├── product-small-8.jpg
│ │ ├── product-small-9.jpg
│ │ └── spacer.gif
│ ├── ItemDetail.aspx
│ ├── ItemDetail.aspx.cs
│ ├── Items.aspx
│ ├── Items.aspx.cs
│ ├── LegalNotice.aspx
│ ├── LegalNotice.aspx.cs
│ ├── MasterPage.master
│ ├── MasterPage.master.cs
│ ├── News.aspx
│ ├── News.aspx.cs
│ ├── People.aspx
│ ├── People.aspx.cs
│ ├── smallbusiness_cs1.vsd
│ ├── Testimonials.aspx
│ ├── Testimonials.aspx.cs
│ ├── TreeLineImages
│ │ ├── i.gif
│ │ ├── l.gif
│ │ ├── lminus.gif
│ │ ├── lplus.gif
│ │ ├── minus.gif
│ │ ├── plus.gif
│ │ ├── rminus.gif
│ │ ├── rplus.gif
│ │ ├── t.gif
│ │ ├── tminus.gif
│ │ └── tplus.gif
│ ├── web.config
│ ├── Web.sitemap
│ └── Welcome.html
├── 博客引擎
│ ├── BlogEngine.Core
│ │ ├── API
│ │ │ └── MetaWeblog
│ │ │ ├── IMetaWeblogAPI.cs
│ │ │ ├── MetaWeblogHandler.cs
│ │ │ ├── XMLRPCRequest.cs
│ │ │ └── XMLRPCResponse.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── BlogEngine.Core.dll
│ │ │ ├── BlogEngine.Core.pdb
│ │ │ └── BlogEngine.Core.XML
│ │ ├── BlogEngine.Core.csproj
│ │ ├── BlogSettings.cs
│ │ ├── BusinessBase.cs
│ │ ├── CategoryDictionary.cs
│ │ ├── ClassDiagram1.cd
│ │ ├── Comment.cs
│ │ ├── Entities
│ │ ├── obj
│ │ │ ├── BlogEngine.Core.csproj.FileListAbsolute.txt
│ │ │ ├── BlogEngine.Core.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── BlogEngine.Core.csproj.GenerateResource.Cache
│ │ │ ├── BlogEngine.Core.dll
│ │ │ ├── BlogEngine.Core.pdb
│ │ │ ├── BlogEngine.Core.Properties.Resources.resources
│ │ │ ├── BlogEngine.Core.Web.Scripts.blog.js
│ │ │ ├── BlogEngine.Core.Web.Scripts.se_hilite.js
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── Page.cs
│ │ ├── Ping
│ │ │ ├── Manager.cs
│ │ │ ├── Pingback.cs
│ │ │ ├── PingService.cs
│ │ │ └── Trackback.cs
│ │ ├── Post.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Providers
│ │ │ ├── BlogProvider.cs
│ │ │ ├── BlogProviderSection.cs
│ │ │ ├── BlogService.cs
│ │ │ ├── MSSQLBlogProvider.cs
│ │ │ └── XmlProvider
│ │ │ ├── PingServices.cs
│ │ │ ├── XmlBlogProvider.cs
│ │ │ └── XmlMembershipProvider.cs
│ │ ├── SavedEventArgs.cs
│ │ ├── Search.cs
│ │ ├── StateCollection.cs
│ │ ├── StopLeechers.cs
│ │ ├── Syndication
│ │ │ ├── Atom
│ │ │ │ ├── AtomCategoryCollection.cs
│ │ │ │ ├── AtomCategory.cs
│ │ │ │ ├── AtomContent.cs
│ │ │ │ ├── AtomEntryCollection.cs
│ │ │ │ ├── AtomEntry.cs
│ │ │ │ ├── AtomFeed.cs
│ │ │ │ ├── AtomGenerator.cs
│ │ │ │ ├── AtomLinkCollection.cs
│ │ │ │ ├── AtomLink.cs
│ │ │ │ ├── AtomPersonCollection.cs
│ │ │ │ ├── AtomPerson.cs
│ │ │ │ ├── AtomText.cs
│ │ │ │ ├── LinkRelation.cs
│ │ │ │ └── TextType.cs
│ │ │ ├── Data
│ │ │ │ ├── AtomEngineSyndicationFeedAdapter.cs
│ │ │ │ ├── EngineSyndicationFeedAdapter.cs
│ │ │ │ ├── ISyndicationFeedAdapter.cs
│ │ │ │ └── RssEngineSyndicationFeedAdapter.cs
│ │ │ ├── Extensions
│ │ │ │ ├── Common
│ │ │ │ │ ├── BlogChannelSyndicationExtension.cs
│ │ │ │ │ ├── CreativeCommonsSyndicationExtension.cs
│ │ │ │ │ ├── DublinCoreSyndicationExtension.cs
│ │ │ │ │ ├── GeocodingSyndicationExtension.cs
│ │ │ │ │ ├── PingbackSyndicationExtension.cs
│ │ │ │ │ ├── SlashSyndicationExtension.cs
│ │ │ │ │ ├── TrackbackSyndicationExtension.cs
│ │ │ │ │ └── WellFormedWebSyndicationExtension.cs
│ │ │ │ ├── ExtensionTarget.cs
│ │ │ │ ├── SyndicationExtension.cs
│ │ │ │ └── SyndicationExtensionDictionary.cs
│ │ │ ├── Rfc822DateTime.cs
│ │ │ ├── Rss
│ │ │ │ ├── CloudProtocol.cs
│ │ │ │ ├── RssCategoryCollection.cs
│ │ │ │ ├── RssCategory.cs
│ │ │ │ ├── RssChannel.cs
│ │ │ │ ├── RssCloud.cs
│ │ │ │ ├── RssEnclosure.cs
│ │ │ │ ├── RssFeed.cs
│ │ │ │ ├── RssGuid.cs
│ │ │ │ ├── RssImage.cs
│ │ │ │ ├── RssItemCollection.cs
│ │ │ │ ├── RssItem.cs
│ │ │ │ ├── RssSource.cs
│ │ │ │ └── RssTextInput.cs
│ │ │ ├── SyndicationFeed.cs
│ │ │ ├── SyndicationFeedEntityBase.cs
│ │ │ ├── SyndicationFeedSettings.cs
│ │ │ ├── SyndicationFormat.cs
│ │ │ └── W3CDateTime.cs
│ │ ├── Utils.cs
│ │ └── Web
│ │ ├── Controls
│ │ │ ├── BlogBasePage.cs
│ │ │ ├── CommentViewBase.cs
│ │ │ └── PostViewBase.cs
│ │ ├── HttpHandlers
│ │ │ ├── CommentFeedHandler.cs
│ │ │ ├── CssHandler.cs
│ │ │ ├── FileHandler.cs
│ │ │ ├── ImageHandler.cs
│ │ │ ├── MicroSummary.cs
│ │ │ ├── OpenSearchHandler.cs
│ │ │ ├── OpmlHandler.cs
│ │ │ ├── PingbackHandler.cs
│ │ │ ├── RatingHandler.cs
│ │ │ ├── RsdHandler.cs
│ │ │ ├── Sitemap.cs
│ │ │ ├── SyndicationHandler.cs
│ │ │ └── TrackbackHandler.cs
│ │ ├── HttpModules
│ │ │ ├── CompressionModule.cs
│ │ │ ├── ReferrerModule.cs
│ │ │ └── UrlRewrite.cs
│ │ └── Scripts
│ │ ├── blog.js
│ │ └── se_hilite.js
│ ├── BlogEngine.NET
│ │ ├── admin
│ │ │ ├── admin1.master
│ │ │ ├── admin1.master.cs
│ │ │ ├── admin.master
│ │ │ ├── admin.master.cs
│ │ │ ├── images
│ │ │ │ ├── bkgd_left_column.gif
│ │ │ │ ├── bkgd_right_column.gif
│ │ │ │ ├── tableftB.gif
│ │ │ │ └── tabrightB.gif
│ │ │ ├── menu.ascx
│ │ │ ├── menu.ascx.cs
│ │ │ ├── Pages
│ │ │ │ ├── Add_entry.aspx
│ │ │ │ ├── Add_entry.aspx.cs
│ │ │ │ ├── Blogroll.aspx
│ │ │ │ ├── Blogroll.aspx.cs
│ │ │ │ ├── Categories.aspx
│ │ │ │ ├── Categories.aspx.cs
│ │ │ │ ├── Controls.aspx
│ │ │ │ ├── Controls.aspx.cs
│ │ │ │ ├── Pages.aspx
│ │ │ │ ├── Pages.aspx.cs
│ │ │ │ ├── PingServices.aspx
│ │ │ │ ├── PingServices.aspx.cs
│ │ │ │ ├── referrers.aspx
│ │ │ │ ├── referrers.aspx.cs
│ │ │ │ ├── Settings.aspx
│ │ │ │ ├── Settings.aspx.cs
│ │ │ │ ├── Users.aspx
│ │ │ │ └── Users.aspx.cs
│ │ │ ├── style.css
│ │ │ ├── tiny_mce
│ │ │ │ ├── blank.htm
│ │ │ │ ├── langs
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── license.txt
│ │ │ │ ├── plugins
│ │ │ │ │ ├── cleanup
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── contextmenu
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── contextmenu.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── emotions
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── emotions.htm
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── emotions.gif
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ ├── smiley-cool.gif
│ │ │ │ │ │ │ ├── smiley-cry.gif
│ │ │ │ │ │ │ ├── smiley-embarassed.gif
│ │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif
│ │ │ │ │ │ │ ├── smiley-frown.gif
│ │ │ │ │ │ │ ├── smiley-innocent.gif
│ │ │ │ │ │ │ ├── smiley-kiss.gif
│ │ │ │ │ │ │ ├── smiley-laughing.gif
│ │ │ │ │ │ │ ├── smiley-money-mouth.gif
│ │ │ │ │ │ │ ├── smiley-sealed.gif
│ │ │ │ │ │ │ ├── smiley-smile.gif
│ │ │ │ │ │ │ ├── smiley-surprised.gif
│ │ │ │ │ │ │ ├── smiley-tongue-out.gif
│ │ │ │ │ │ │ ├── smiley-undecided.gif
│ │ │ │ │ │ │ ├── smiley-wink.gif
│ │ │ │ │ │ │ └── smiley-yell.gif
│ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ └── functions.js
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── fullscreen
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── page.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── fullscreen.htm
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── fullscreen.gif
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── iespell
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── iespell.gif
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── inlinepopups
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── inlinepopup.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ │ ├── window_close.gif
│ │ │ │ │ │ │ ├── window_maximize.gif
│ │ │ │ │ │ │ ├── window_minimize.gif
│ │ │ │ │ │ │ └── window_resize.gif
│ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ └── mcwindows.js
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── media
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ └── media.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── flash.gif
│ │ │ │ │ │ │ ├── media.gif
│ │ │ │ │ │ │ ├── quicktime.gif
│ │ │ │ │ │ │ ├── realmedia.gif
│ │ │ │ │ │ │ ├── shockwave.gif
│ │ │ │ │ │ │ └── windowsmedia.gif
│ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ ├── embed.js
│ │ │ │ │ │ │ └── media.js
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ └── media.htm
│ │ │ │ │ ├── paste
│ │ │ │ │ │ ├── blank.htm
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── blank.css
│ │ │ │ │ │ │ └── pasteword.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── pastetext.gif
│ │ │ │ │ │ │ ├── pasteword.gif
│ │ │ │ │ │ │ └── selectall.gif
│ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ ├── pastetext.js
│ │ │ │ │ │ │ └── pasteword.js
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ ├── pastetext.htm
│ │ │ │ │ │ ├── pasteword.htm
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── searchreplace.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── replace_all_button_bg.gif
│ │ │ │ │ │ │ ├── replace_button_bg.gif
│ │ │ │ │ │ │ ├── replace.gif
│ │ │ │ │ │ │ └── search.gif
│ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ └── searchreplace.htm
│ │ │ │ │ ├── style
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── props.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── apply_button_bg.gif
│ │ │ │ │ │ │ ├── style_info.gif
│ │ │ │ │ │ │ └── styleprops.gif
│ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ └── props.js
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ ├── props.htm
│ │ │ │ │ │ └── readme.txt
│ │ │ │ │ ├── table
│ │ │ │ │ │ ├── cell.htm
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── cell.css
│ │ │ │ │ │ │ ├── row.css
│ │ │ │ │ │ │ └── table.css
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── buttons.gif
│ │ │ │ │ │ │ ├── table_cell_props.gif
│ │ │ │ │ │ │ ├── table_delete_col.gif
│ │ │ │ │ │ │ ├── table_delete.gif
│ │ │ │ │ │ │ ├── table_delete_row.gif
│ │ │ │ │ │ │ ├── table.gif
│ │ │ │ │ │ │ ├── table_insert_col_after.gif
│ │ │ │ │ │ │ ├── table_insert_col_before.gif
│ │ │ │ │ │ │ ├── table_insert_row_after.gif
│ │ │ │ │ │ │ ├── table_insert_row_before.gif
│ │ │ │ │ │ │ ├── table_merge_cells.gif
│ │ │ │ │ │ │ ├── table_row_props.gif
│ │ │ │ │ │ │ └── table_split_cells.gif
│ │ │ │ │ │ ├── jscripts
│ │ │ │ │ │ │ ├── cell.js
│ │ │ │ │ │ │ ├── merge_cells.js
│ │ │ │ │ │ │ ├── row.js
│ │ │ │ │ │ │ └── table.js
│ │ │ │ │ │ ├── langs
│ │ │ │ │ │ │ └── en.js
│ │ │ │ │ │ ├── merge_cells.htm
│ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ ├── row.htm
│ │ │ │ │ │ └── table.htm
│ │ │ │ │ ├── visualchars
│ │ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── visualchars.gif
│ │ │ │ │ │ └── langs
│ │ │ │ │ │ └── en.js
│ │ │ │ │ └── xhtmlxtras
│ │ │ │ │ ├── abbr.htm
│ │ │ │ │ ├── acronym.htm
│ │ │ │ │ ├── attributes.htm
│ │ │ │ │ ├── cite.htm
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── attributes.css
│ │ │ │ │ │ ├── popup.css
│ │ │ │ │ │ └── xhtmlxtras.css
│ │ │ │ │ ├── del.htm
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── abbr.gif
│ │ │ │ │ │ ├── acronym.gif
│ │ │ │ │ │ ├── attribs.gif
│ │ │ │ │ │ ├── cite.gif
│ │ │ │ │ │ ├── date_time.gif
│ │ │ │ │ │ ├── del.gif
│ │ │ │ │ │ ├── ins.gif
│ │ │ │ │ │ └── remove_button_bg.gif
│ │ │ │ │ ├── ins.htm
│ │ │ │ │ ├── jscripts
│ │ │ │ │ │ ├── abbr.js
│ │ │ │ │ │ ├── acronym.js
│ │ │ │ │ │ ├── attributes.js
│ │ │ │ │ │ ├── cite.js
│ │ │ │ │ │ ├── del.js
│ │ │ │ │ │ ├── element_common.js
│ │ │ │ │ │ └── ins.js
│ │ │ │ │ └── langs
│ │ │ │ │ └── en.js
│ │ │ │ ├── themes
│ │ │ │ │ └── advanced
│ │ │ │ │ ├── about.htm
│ │ │ │ │ ├── anchor.htm
│ │ │ │ │ ├── charmap.htm
│ │ │ │ │ ├── color_picker.htm
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── colorpicker.css
│ │ │ │ │ │ ├── editor_content.css
│ │ │ │ │ │ ├── editor_popup.css
│ │ │ │ │ │ └── editor_ui.css
│ │ │ │ │ ├── docs
│ │ │ │ │ │ └── en
│ │ │ │ │ │ ├── about.htm
│ │ │ │ │ │ ├── common_buttons.htm
│ │ │ │ │ │ ├── create_accessible_content.htm
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── insert_anchor_window.gif
│ │ │ │ │ │ │ ├── insert_image_window.gif
│ │ │ │ │ │ │ ├── insert_link_window.gif
│ │ │ │ │ │ │ └── insert_table_window.gif
│ │ │ │ │ │ ├── index.htm
│ │ │ │ │ │ ├── insert_anchor_button.htm
│ │ │ │ │ │ ├── insert_image_button.htm
│ │ │ │ │ │ ├── insert_link_button.htm
│ │ │ │ │ │ ├── insert_table_button.htm
│ │ │ │ │ │ └── style.css
│ │ │ │ │ ├── editor_template.js
│ │ │ │ │ ├── editor_template_src.js
│ │ │ │ │ ├── image.htm
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── anchor_symbol.gif
│ │ │ │ │ │ ├── backcolor.gif
│ │ │ │ │ │ ├── bold_de_se.gif
│ │ │ │ │ │ ├── bold_es.gif
│ │ │ │ │ │ ├── bold_fr.gif
│ │ │ │ │ │ ├── bold.gif
│ │ │ │ │ │ ├── bold_ru.gif
│ │ │ │ │ │ ├── bold_tw.gif
│ │ │ │ │ │ ├── browse.gif
│ │ │ │ │ │ ├── bullist.gif
│ │ │ │ │ │ ├── button_menu.gif
│ │ │ │ │ │ ├── buttons.gif
│ │ │ │ │ │ ├── cancel_button_bg.gif
│ │ │ │ │ │ ├── charmap.gif
│ │ │ │ │ │ ├── cleanup.gif
│ │ │ │ │ │ ├── close.gif
│ │ │ │ │ │ ├── code.gif
│ │ │ │ │ │ ├── color.gif
│ │ │ │ │ │ ├── colors.jpg
│ │ │ │ │ │ ├── copy.gif
│ │ │ │ │ │ ├── custom_1.gif
│ │ │ │ │ │ ├── cut.gif
│ │ │ │ │ │ ├── forecolor.gif
│ │ │ │ │ │ ├── help.gif
│ │ │ │ │ │ ├── hr.gif
│ │ │ │ │ │ ├── image.gif
│ │ │ │ │ │ ├── indent.gif
│ │ │ │ │ │ ├── insert_button_bg.gif
│ │ │ │ │ │ ├── italic_de_se.gif
│ │ │ │ │ │ ├── italic_es.gif
│ │ │ │ │ │ ├── italic.gif
│ │ │ │ │ │ ├── italic_ru.gif
│ │ │ │ │ │ ├── italic_tw.gif
│ │ │ │ │ │ ├── justifycenter.gif
│ │ │ │ │ │ ├── justifyfull.gif
│ │ │ │ │ │ ├── justifyleft.gif
│ │ │ │ │ │ ├── justifyright.gif
│ │ │ │ │ │ ├── link.gif
│ │ │ │ │ │ ├── menu_check.gif
│ │ │ │ │ │ ├── newdocument.gif
│ │ │ │ │ │ ├── numlist.gif
│ │ │ │ │ │ ├── opacity.png
│ │ │ │ │ │ ├── outdent.gif
│ │ │ │ │ │ ├── paste.gif
│ │ │ │ │ │ ├── redo.gif
│ │ │ │ │ │ ├── removeformat.gif
│ │ │ │ │ │ ├── separator.gif
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── statusbar_resize.gif
│ │ │ │ │ │ ├── strikethrough.gif
│ │ │ │ │ │ ├── sub.gif
│ │ │ │ │ │ ├── sup.gif
│ │ │ │ │ │ ├── underline_es.gif
│ │ │ │ │ │ ├── underline_fr.gif
│ │ │ │ │ │ ├── underline.gif
│ │ │ │ │ │ ├── underline_ru.gif
│ │ │ │ │ │ ├── underline_tw.gif
│ │ │ │ │ │ ├── undo.gif
│ │ │ │ │ │ ├── unlink.gif
│ │ │ │ │ │ ├── visualaid.gif
│ │ │ │ │ │ └── xp
│ │ │ │ │ │ ├── tab_bg.gif
│ │ │ │ │ │ ├── tab_end.gif
│ │ │ │ │ │ ├── tabs_bg.gif
│ │ │ │ │ │ ├── tab_sel_bg.gif
│ │ │ │ │ │ └── tab_sel_end.gif
│ │ │ │ │ ├── jscripts
│ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ ├── charmap.js
│ │ │ │ │ │ ├── color_picker.js
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ ├── link.js
│ │ │ │ │ │ └── source_editor.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ └── en.js
│ │ │ │ │ ├── link.htm
│ │ │ │ │ └── source_editor.htm
│ │ │ │ ├── tiny_mce.js
│ │ │ │ ├── tiny_mce_popup.js
│ │ │ │ ├── tiny_mce_src.js
│ │ │ │ └── utils
│ │ │ │ ├── editable_selects.js
│ │ │ │ ├── form_utils.js
│ │ │ │ ├── mclayer.js
│ │ │ │ ├── mctabs.js
│ │ │ │ └── validate.js
│ │ │ ├── tinyMCE.ascx
│ │ │ ├── tinyMCE.ascx.cs
│ │ │ └── Web.config
│ │ ├── api
│ │ │ ├── TagMiniView.aspx
│ │ │ ├── TagMiniView.aspx.cs
│ │ │ └── wlw.css
│ │ ├── App_Code
│ │ │ └── Controls
│ │ │ ├── AuthorList.cs
│ │ │ ├── Blogroll.cs
│ │ │ ├── CategoryList.cs
│ │ │ ├── FilteredPageList.cs
│ │ │ ├── MonthList.cs
│ │ │ ├── PageList.cs
│ │ │ ├── PostCalendar.cs
│ │ │ ├── RecentComments.cs
│ │ │ ├── RecentPosts.cs
│ │ │ ├── RelatedPosts.cs
│ │ │ ├── SearchBox.cs
│ │ │ ├── SearchOnSearch.cs
│ │ │ └── TagCloud.cs
│ │ ├── App_Data
│ │ │ ├── blogroll.xml
│ │ │ ├── categories.xml
│ │ │ ├── files
│ │ │ │ └── DSC00685.JPG
│ │ │ ├── log
│ │ │ │ └── Monday.xml
│ │ │ ├── pages
│ │ │ │ ├── 175a0315-ab12-422e-9b25-26d2d29fc56c.xml
│ │ │ │ ├── 37038d5c-a9dc-4fd1-98b6-6e42e4cedb72.xml
│ │ │ │ ├── 926f820a-fa01-456f-a079-27cdcc6871e3.xml
│ │ │ │ ├── b663b6a1-1c34-4c60-a891-c14772507b23.xml
│ │ │ │ └── fa17ae66-c171-4f78-b3a5-2bc0e148a813.xml
│ │ │ ├── pingservices.xml
│ │ │ ├── posts
│ │ │ │ ├── 8c414273-e576-4e1c-adb0-59a257baa1f2.xml
│ │ │ │ ├── c3b491e5-59ac-4f6a-81e5-27e971b903ed.xml
│ │ │ │ └── f69c88ff-ea5c-484b-8041-ac90ef73a15d.xml
│ │ │ ├── settings.xml
│ │ │ ├── stopwords.txt
│ │ │ └── users.xml
│ │ ├── App_GlobalResources
│ │ │ ├── labels.ar.resx
│ │ │ ├── labels.cs.resx
│ │ │ ├── labels.da.resx
│ │ │ ├── labels.de.resx
│ │ │ ├── labels.es.resx
│ │ │ ├── labels.fr.resx
│ │ │ ├── labels.it.resx
│ │ │ ├── labels.nl-be.resx
│ │ │ ├── labels.nl.resx
│ │ │ ├── labels.no.resx
│ │ │ ├── labels.pl.resx
│ │ │ ├── labels.pt-br.resx
│ │ │ ├── labels.resx
│ │ │ ├── labels.sv.resx
│ │ │ ├── labels.th.resx
│ │ │ ├── labels.tr.resx
│ │ │ └── labels.zh-CN.resx
│ │ ├── archive.aspx
│ │ ├── archive.aspx.cs
│ │ ├── Bin
│ │ │ ├── BlogEngine.Core.dll
│ │ │ ├── BlogEngine.Core.pdb
│ │ │ └── BlogEngine.Core.XML
│ │ ├── contact.aspx
│ │ ├── contact.aspx.cs
│ │ ├── Default2.aspx
│ │ ├── Default2.aspx.cs
│ │ ├── default.aspx
│ │ ├── default.aspx.cs
│ │ ├── login.aspx
│ │ ├── login.aspx.cs
│ │ ├── page.aspx
│ │ ├── page.aspx.cs
│ │ ├── pics
│ │ │ ├── ajax-loader.gif
│ │ │ ├── benTag24.png
│ │ │ ├── blogengine.ico
│ │ │ ├── flags
│ │ │ │ ├── ae.png
│ │ │ │ ├── al.png
│ │ │ │ ├── am.png
│ │ │ │ ├── ar.png
│ │ │ │ ├── at.png
│ │ │ │ ├── au.png
│ │ │ │ ├── az.png
│ │ │ │ ├── ba.png
│ │ │ │ ├── be.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── bh.png
│ │ │ │ ├── bn.png
│ │ │ │ ├── bo.png
│ │ │ │ ├── br.png
│ │ │ │ ├── by.png
│ │ │ │ ├── bz.png
│ │ │ │ ├── ca.png
│ │ │ │ ├── ch.png
│ │ │ │ ├── cl.png
│ │ │ │ ├── cn.png
│ │ │ │ ├── co.png
│ │ │ │ ├── cr.png
│ │ │ │ ├── cz.png
│ │ │ │ ├── de.png
│ │ │ │ ├── dk.png
│ │ │ │ ├── do.png
│ │ │ │ ├── dz.png
│ │ │ │ ├── ec.png
│ │ │ │ ├── ee.png
│ │ │ │ ├── eg.png
│ │ │ │ ├── es.png
│ │ │ │ ├── fi.png
│ │ │ │ ├── fo.png
│ │ │ │ ├── fr.png
│ │ │ │ ├── gb.png
│ │ │ │ ├── ge.png
│ │ │ │ ├── gr.png
│ │ │ │ ├── gt.png
│ │ │ │ ├── hk.png
│ │ │ │ ├── hn.png
│ │ │ │ ├── hr.png
│ │ │ │ ├── hu.png
│ │ │ │ ├── id.png
│ │ │ │ ├── ie.png
│ │ │ │ ├── il.png
│ │ │ │ ├── in.png
│ │ │ │ ├── iq.png
│ │ │ │ ├── ir.png
│ │ │ │ ├── is.png
│ │ │ │ ├── it.png
│ │ │ │ ├── jm.png
│ │ │ │ ├── jo.png
│ │ │ │ ├── jp.png
│ │ │ │ ├── ke.png
│ │ │ │ ├── kg.png
│ │ │ │ ├── kr.png
│ │ │ │ ├── kw.png
│ │ │ │ ├── kz.png
│ │ │ │ ├── lb.png
│ │ │ │ ├── li.png
│ │ │ │ ├── lt.png
│ │ │ │ ├── lu.png
│ │ │ │ ├── lv.png
│ │ │ │ ├── ly.png
│ │ │ │ ├── ma.png
│ │ │ │ ├── mc.png
│ │ │ │ ├── mk.png
│ │ │ │ ├── mn.png
│ │ │ │ ├── mo.png
│ │ │ │ ├── mt.png
│ │ │ │ ├── mv.png
│ │ │ │ ├── mx.png
│ │ │ │ ├── my.png
│ │ │ │ ├── ni.png
│ │ │ │ ├── nl.png
│ │ │ │ ├── no.png
│ │ │ │ ├── nz.png
│ │ │ │ ├── om.png
│ │ │ │ ├── pa.png
│ │ │ │ ├── pe.png
│ │ │ │ ├── ph.png
│ │ │ │ ├── pk.png
│ │ │ │ ├── pl.png
│ │ │ │ ├── pr.png
│ │ │ │ ├── pt.png
│ │ │ │ ├── py.png
│ │ │ │ ├── qa.png
│ │ │ │ ├── ro.png
│ │ │ │ ├── ru.png
│ │ │ │ ├── sa.png
│ │ │ │ ├── se.png
│ │ │ │ ├── sg.png
│ │ │ │ ├── si.png
│ │ │ │ ├── sk.png
│ │ │ │ ├── sv.png
│ │ │ │ ├── sy.png
│ │ │ │ ├── th.png
│ │ │ │ ├── tn.png
│ │ │ │ ├── tr.png
│ │ │ │ ├── tt.png
│ │ │ │ ├── tw.png
│ │ │ │ ├── ua.png
│ │ │ │ ├── us.png
│ │ │ │ ├── uy.png
│ │ │ │ ├── uz.png
│ │ │ │ ├── ve.png
│ │ │ │ ├── vn.png
│ │ │ │ ├── ye.png
│ │ │ │ ├── za.png
│ │ │ │ └── zw.png
│ │ │ ├── mail.gif
│ │ │ ├── opml.png
│ │ │ ├── pixel.gif
│ │ │ ├── remote.gif
│ │ │ ├── rssButton.gif
│ │ │ ├── star_small.gif
│ │ │ ├── wrench84watermark.png
│ │ │ └── wrenchicon16.png
│ │ ├── post.aspx
│ │ ├── post.aspx.cs
│ │ ├── setup
│ │ │ ├── MSSQLSetup1.1.0.0.sql
│ │ │ └── ReadMe.txt
│ │ ├── sql.config
│ │ ├── themes
│ │ │ ├── Cogitation
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── Images
│ │ │ │ │ ├── BlueTabBack.gif
│ │ │ │ │ ├── BlueTabBackground.gif
│ │ │ │ │ ├── BlueTabFace.gif
│ │ │ │ │ ├── BlueTabRight.gif
│ │ │ │ │ ├── BrownTabBack.gif
│ │ │ │ │ ├── BrownTabBackground.gif
│ │ │ │ │ ├── BrownTabFace.gif
│ │ │ │ │ ├── GreenTabBack.gif
│ │ │ │ │ ├── GreenTabBackground.gif
│ │ │ │ │ ├── GreenTabFace.gif
│ │ │ │ │ ├── GreenTabRight.gif
│ │ │ │ │ ├── TransTabRight.gif
│ │ │ │ │ ├── xml.gif
│ │ │ │ │ └── xmlsmall.gif
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── site.master
│ │ │ │ ├── site.master.cs
│ │ │ │ └── style.css
│ │ │ ├── Creative Green
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── images
│ │ │ │ │ ├── avatar.jpg
│ │ │ │ │ ├── background.jpg
│ │ │ │ │ ├── contact.png
│ │ │ │ │ ├── container_header.png
│ │ │ │ │ ├── date_Tab.png
│ │ │ │ │ ├── footer_background.jpg
│ │ │ │ │ ├── footer_content_header.jpg
│ │ │ │ │ ├── footer_header.jpg
│ │ │ │ │ ├── header.png
│ │ │ │ │ └── navigation.png
│ │ │ │ ├── noavatar.jpg
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── SidePanel.ascx
│ │ │ │ ├── SidePanel.ascx.cs
│ │ │ │ ├── site.master
│ │ │ │ ├── site.master.cs
│ │ │ │ ├── style.css
│ │ │ │ └── template_800.css
│ │ │ ├── Curiously Green
│ │ │ │ ├── CommentView1.ascx
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── CommentView.ascx.cs
│ │ │ │ ├── default.css
│ │ │ │ ├── images
│ │ │ │ │ ├── a1.gif
│ │ │ │ │ ├── a2.gif
│ │ │ │ │ ├── a3.gif
│ │ │ │ │ ├── a4.gif
│ │ │ │ │ ├── bbg0.gif
│ │ │ │ │ ├── bbg1.gif
│ │ │ │ │ ├── pic.jpg
│ │ │ │ │ ├── x1.gif
│ │ │ │ │ └── x2.gif
│ │ │ │ ├── noavatar.jpg
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── PostView.ascx.cs
│ │ │ │ ├── site.master
│ │ │ │ └── site.master.cs
│ │ │ ├── Dirtylicious
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── default.css
│ │ │ │ ├── img
│ │ │ │ │ ├── body.jpg
│ │ │ │ │ ├── container.jpg
│ │ │ │ │ ├── header.jpg
│ │ │ │ │ ├── li.gif
│ │ │ │ │ ├── main.gif
│ │ │ │ │ ├── nav.gif
│ │ │ │ │ └── quote.gif
│ │ │ │ ├── noavatar.jpg
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── site.master
│ │ │ │ └── site.master.cs
│ │ │ ├── GirlGeek
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── default.css
│ │ │ │ ├── img
│ │ │ │ │ ├── body.gif
│ │ │ │ │ ├── container.gif
│ │ │ │ │ ├── header.jpg
│ │ │ │ │ ├── li.gif
│ │ │ │ │ ├── main.gif
│ │ │ │ │ ├── quote.gif
│ │ │ │ │ └── rss_24x24.png
│ │ │ │ ├── noavatar.jpg
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── site.master
│ │ │ │ └── site.master.cs
│ │ │ ├── Indigo
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── img
│ │ │ │ │ ├── author.gif
│ │ │ │ │ ├── bgcode.gif
│ │ │ │ │ ├── bgfooter.gif
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── bgmain.gif
│ │ │ │ │ ├── comments.gif
│ │ │ │ │ ├── li.gif
│ │ │ │ │ ├── nav_li.gif
│ │ │ │ │ ├── quote.gif
│ │ │ │ │ ├── timeicon.gif
│ │ │ │ │ └── topleft.gif
│ │ │ │ ├── noavatar.jpg
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── site.master
│ │ │ │ ├── site.master.cs
│ │ │ │ └── style.css
│ │ │ ├── Leaves
│ │ │ │ ├── arrow.gif
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── noavatar.jpg
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── readme.txt
│ │ │ │ ├── site.master
│ │ │ │ ├── site.master.cs
│ │ │ │ └── style.css
│ │ │ ├── Standard
│ │ │ │ ├── CommentView.ascx
│ │ │ │ ├── noavatar.jpg
│ │ │ │ ├── PostView.ascx
│ │ │ │ ├── SidePanel.ascx
│ │ │ │ ├── SidePanel.ascx.cs
│ │ │ │ ├── site.master
│ │ │ │ ├── site.master.cs
│ │ │ │ └── style.css
│ │ │ └── Terrafirma
│ │ │ ├── arrow.gif
│ │ │ ├── CommentView.ascx
│ │ │ ├── default.css
│ │ │ ├── images
│ │ │ │ ├── a10.jpg
│ │ │ │ ├── a16.gif
│ │ │ │ ├── a18.gif
│ │ │ │ ├── a1.gif
│ │ │ │ ├── a22.gif
│ │ │ │ ├── a26.gif
│ │ │ │ ├── a33.gif
│ │ │ │ ├── a36.gif
│ │ │ │ ├── a38.gif
│ │ │ │ ├── a41.gif
│ │ │ │ ├── a47.gif
│ │ │ │ ├── a50.gif
│ │ │ │ ├── a8.gif
│ │ │ │ ├── abg.gif
│ │ │ │ ├── add-to-dzone.gif
│ │ │ │ ├── pic1.jpg
│ │ │ │ ├── pic2.jpg
│ │ │ │ ├── spacer.gif
│ │ │ │ └── upbg.gif
│ │ │ ├── noavatar.jpg
│ │ │ ├── PostView.ascx
│ │ │ ├── readme.txt
│ │ │ ├── site.master
│ │ │ └── site.master.cs
│ │ ├── User controls
│ │ │ ├── CommentView.ascx
│ │ │ ├── CommentView.ascx.cs
│ │ │ ├── PostList.ascx
│ │ │ └── PostList.ascx.cs
│ │ ├── Web.Config
│ │ ├── webservices
│ │ │ └── RssImporter.asmx
│ │ └── wlwmanifest.xml
│ ├── BlogEngine.NET2.vsd
│ ├── BlogEngine.NET3.vsd
│ ├── BlogEngine.NET.gpState
│ ├── BlogEngine.NET.sln
│ ├── BlogEngine.NET.suo
│ └── BlogEngine.NET.vsd
├── 图书馆管理信息系统
│ ├── Backup
│ │ ├── Library
│ │ │ ├── App.config
│ │ │ ├── Data
│ │ │ │ ├── AllStructs.cs
│ │ │ │ ├── BookController.cs
│ │ │ │ ├── Book.cs
│ │ │ │ ├── BooksStatusController.cs
│ │ │ │ ├── BooksStatus.cs
│ │ │ │ ├── OrderController.cs
│ │ │ │ ├── Order.cs
│ │ │ │ ├── RoleController.cs
│ │ │ │ ├── Role.cs
│ │ │ │ ├── StatusController.cs
│ │ │ │ ├── Status.cs
│ │ │ │ ├── StoredProcedures.cs
│ │ │ │ ├── UserController.cs
│ │ │ │ ├── User.cs
│ │ │ │ ├── UsersRoleController.cs
│ │ │ │ └── UsersRole.cs
│ │ │ ├── frmLogin.cs
│ │ │ ├── frmLogin.Designer.cs
│ │ │ ├── frmLogin.resx
│ │ │ ├── frmMain.cs
│ │ │ ├── frmMain.Designer.cs
│ │ │ ├── frmMain.resx
│ │ │ ├── Library.csproj
│ │ │ ├── Library.csproj.user
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Library.sln
│ │ └── Library.suo
│ ├── Library
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Library.exe
│ │ │ ├── Library.exe.config
│ │ │ ├── Library.pdb
│ │ │ ├── Library.vshost.exe
│ │ │ ├── Library.vshost.exe.config
│ │ │ ├── Library.vshost.exe.manifest
│ │ │ ├── MySql.Data.dll
│ │ │ └── SubSonic.dll
│ │ ├── Data
│ │ │ ├── AllStructs.cs
│ │ │ ├── BookController.cs
│ │ │ ├── Book.cs
│ │ │ ├── BooksStatusController.cs
│ │ │ ├── BooksStatus.cs
│ │ │ ├── OrderController.cs
│ │ │ ├── Order.cs
│ │ │ ├── RoleController.cs
│ │ │ ├── Role.cs
│ │ │ ├── StatusController.cs
│ │ │ ├── Status.cs
│ │ │ ├── StoredProcedures.cs
│ │ │ ├── UserController.cs
│ │ │ ├── User.cs
│ │ │ ├── UsersRoleController.cs
│ │ │ └── UsersRole.cs
│ │ ├── frmLogin.cs
│ │ ├── frmLogin.Designer.cs
│ │ ├── frmLogin.resx
│ │ ├── frmMain.cs
│ │ ├── frmMain.Designer.cs
│ │ ├── frmMain.resx
│ │ ├── Library.csproj
│ │ ├── Library.csproj.user
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Library.csproj.FileListAbsolute.txt
│ │ │ │ ├── Library.csproj.GenerateResource.Cache
│ │ │ │ ├── Library.exe
│ │ │ │ ├── Library.frmLogin.resources
│ │ │ │ ├── Library.frmMain.resources
│ │ │ │ ├── Library.pdb
│ │ │ │ ├── Library.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── Library.csproj.FileList.txt
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Library.resharper
│ ├── Library.resharper.user
│ ├── Library.sln
│ ├── Library.suo
│ ├── _ReSharper.Library
│ │ ├── 53418199-4b14-480c-adbb-cbe493c51d2e.Metadata
│ │ ├── CachesImage.bin
│ │ ├── e76c5ba1-1df7-4d50-b28f-a00ecee5b1de.Metadata
│ │ ├── ReflectionCache.xml
│ │ ├── TodoCache
│ │ │ └── 1
│ │ │ └── 3baa91e9.dat
│ │ └── WordIndex.New
│ │ └── 7
│ │ └── 2acd2777.dat
│ ├── UpgradeLog.XML
│ └── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
├── 在线求职系统
│ ├── Admin
│ │ ├── EducationLevelsManager.aspx
│ │ ├── EducationLevelsManager.aspx.cs
│ │ ├── ExperienceLevelManager.aspx
│ │ └── ExperienceLevelManager.aspx.cs
│ ├── App_Code
│ │ ├── BOL
│ │ │ ├── Company.cs
│ │ │ ├── Country.cs
│ │ │ ├── EducationLevel.cs
│ │ │ ├── ExperienceLevel.cs
│ │ │ ├── JobPosting.cs
│ │ │ ├── JobType.cs
│ │ │ ├── MyJob.cs
│ │ │ ├── MyResume.cs
│ │ │ ├── MySearch.cs
│ │ │ ├── Resume.cs
│ │ │ └── State.cs
│ │ ├── ClassDiagram2.cd
│ │ ├── ClassDiagram.cd
│ │ ├── companyClassDiagram.cd
│ │ ├── DAL
│ │ │ └── DBAccess.cs
│ │ └── DBAccessClassDiagram.cd
│ ├── App_Data
│ ├── App_Themes
│ │ └── YellowShades
│ │ ├── yellowshades.css
│ │ └── yellowshades.skin
│ ├── changepassword.aspx
│ ├── changepassword.aspx.cs
│ ├── customerrorpage.aspx
│ ├── customerrorpage.aspx.cs
│ ├── CustomErrorPages
│ │ ├── NotAuthorized.aspx
│ │ ├── NotAuthorized.aspx.cs
│ │ ├── profilenotfound.aspx
│ │ └── profilenotfound.aspx.cs
│ ├── default.aspx
│ ├── default.aspx.cs
│ ├── employer
│ │ ├── AddEditPosting.aspx
│ │ ├── AddEditPosting.aspx.cs
│ │ ├── companyprofile.aspx
│ │ ├── companyprofile.aspx.cs
│ │ ├── jobpostings.aspx
│ │ ├── jobpostings.aspx.cs
│ │ ├── MyFavorites.aspx
│ │ ├── MyFavorites.aspx.cs
│ │ ├── resumesearch.aspx
│ │ ├── resumesearch.aspx.cs
│ │ ├── viewresume.aspx
│ │ └── viewresume.aspx.cs
│ ├── EULA.rtf
│ ├── Global.asax
│ ├── Images
│ │ ├── logo.gif
│ │ ├── logo.jpg
│ │ └── logo.png
│ ├── jobseeker
│ │ ├── jobsearch.aspx
│ │ ├── jobsearch.aspx.cs
│ │ ├── MyFavorites.aspx
│ │ ├── MyFavorites.aspx.cs
│ │ ├── postresume.aspx
│ │ ├── postresume.aspx.cs
│ │ ├── viewcompanyprofile.aspx
│ │ ├── viewcompanyprofile.aspx.cs
│ │ ├── viewjobposting.aspx
│ │ └── viewjobposting.aspx.cs
│ ├── login.aspx
│ ├── login.aspx.cs
│ ├── MasterPage.master
│ ├── MasterPage.master.cs
│ ├── register.aspx
│ ├── register.aspx.cs
│ ├── UserControls
│ │ ├── DisplayModeController.ascx
│ │ ├── DisplayModeController.ascx.cs
│ │ ├── LatestJobs.ascx
│ │ ├── LatestJobs.ascx.cs
│ │ ├── MyJobs.ascx
│ │ ├── MyJobs.ascx.cs
│ │ ├── MyResumes.ascx
│ │ ├── MyResumes.ascx.cs
│ │ ├── MySearches.ascx
│ │ ├── MySearches.ascx.cs
│ │ ├── NavigationTree.ascx
│ │ ├── NavigationTree.ascx.cs
│ │ ├── NavigationTree.xml
│ │ ├── Statistics.ascx
│ │ └── Statistics.ascx.cs
│ ├── web.config
│ └── Welcome.htm
└── 时间跟踪系统
├── App_Code
│ ├── BLL
│ │ ├── Category.cs
│ │ ├── ProjectComparation.cs
│ │ ├── Project.cs
│ │ ├── TimeEntry.cs
│ │ ├── UserReport.cs
│ │ └── UserTotalDurationReport.cs
│ ├── ClassDiagram.cd
│ ├── DAL
│ │ ├── DataAccessHelper.cs
│ │ ├── DataAcess.cs
│ │ └── SQLDataAccessLayer.cs
│ └── DefaultValue.cs
├── App_Data
│ ├── timetracker-add.sql
│ ├── TimeTracker_log.ldf
│ └── TimeTracker.mdf
├── Default.aspx
├── Default.aspx.cs
├── EULA.txt
├── Global.asax
├── TimeTracker
│ ├── Calendar.aspx
│ ├── Calendar.aspx.cs
│ ├── images
│ │ ├── background_addhours.jpg
│ │ ├── background_body.gif
│ │ ├── background_calendar.gif
│ │ ├── background_drop_menu.jpg
│ │ ├── background_formsection.gif
│ │ ├── background_main.jpg
│ │ ├── icon-calendar.gif
│ │ ├── icon-cancel.gif
│ │ ├── icon-delete.gif
│ │ ├── icon-edit.gif
│ │ ├── icon_left_white_arrow.gif
│ │ ├── icon-save.gif
│ │ ├── tab_bg.gif
│ │ ├── tab_dim.gif
│ │ ├── tab.gif
│ │ ├── timesheet_data_bg.gif
│ │ └── time_tracker_logo.gif
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── MasterPage.master
│ ├── MasterPage.master.cs
│ ├── Project_Details.aspx
│ ├── Project_Details.aspx.cs
│ ├── Project_List.aspx
│ ├── Project_List.aspx.cs
│ ├── Report_Project.aspx
│ ├── Report_Project.aspx.cs
│ ├── Report_Project_Result.aspx
│ ├── Report_Project_Result.aspx.cs
│ ├── Report_Resources.aspx
│ ├── Report_Resources.aspx.cs
│ ├── Report_Resources_Result.aspx
│ ├── Report_Resources_Result.aspx.cs
│ ├── script.js
│ ├── TimeEntry.aspx
│ ├── TimeEntry.aspx.cs
│ ├── timetracker.css
│ ├── User_Create.aspx
│ ├── User_Create.aspx.cs
│ ├── User_Edit.aspx
│ ├── User_List.aspx
│ ├── User_List.aspx.cs
│ ├── User_test.aspx.cs
│ └── Web.config
├── web.config
├── web.sitemap
└── Welcome.html
180 directories, 1154 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论