实例介绍
此新闻发布系统 是一个从零到有开发的,并且有着全方位的对技术的介绍,其中用到的技术有怎么做需求分析,创建数据库表,C#,asp,jquery,css,vs2008等等的应用,介绍详细,是一个让人学以致用的系统。 里面包含三层架构的源代码,设计说明书,所用的SQL语句,应有尽有,非常齐全,供大家参考。
【实例截图】
【核心代码】
64743f09-6784-4c81-89fc-3711c7ed165f
└── news
├── BLL
│ ├── bin
│ │ └── Debug
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── Model.dll
│ │ └── Model.pdb
│ ├── BLL.csproj
│ ├── CategoryManager.cs
│ ├── CategroyManager.cs
│ ├── Class1.cs
│ ├── Class2.cs
│ ├── Class3.cs
│ ├── Class4.cs
│ ├── Class5.cs
│ ├── CommentManager.cs
│ ├── LoginManager.cs
│ ├── NewsManager.cs
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── ResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── DAL
│ ├── bin
│ │ └── Debug
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── Model.dll
│ │ └── Model.pdb
│ ├── CategoryDAO.cs
│ ├── CommentDAO.cs
│ ├── DAL.csproj
│ ├── NewsDAO.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SQLHelper.cs
├── doc
│ ├── ~$设计说明书.rtf
│ ├── NET中获取字符串的MD5码.docx
│ ├── NET使用一般处理程序生成验证码.docx
│ ├── NET在后置代码中输入JS提示语句(背景不会变白).docx
│ ├── SQL1.sql
│ ├── SQL语句.sql
│ ├── 将指定字符串按指定长度进行剪切.docx
│ ├── 框架.ep
│ ├── 设计说明书.rtf
│ └── 页面框架.png
├── Model
│ ├── bin
│ │ └── Debug
│ │ ├── Model.dll
│ │ └── Model.pdb
│ ├── Category.cs
│ ├── Comment.CS
│ ├── Model.csproj
│ ├── Model.csproj.user
│ ├── News.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ ├── Model.dll
│ │ └── Model.pdb
│ └── Properties
│ └── AssemblyInfo.cs
├── web
│ ├── admin
│ │ ├── addnews.aspx
│ │ ├── addnews.aspx.cs
│ │ ├── categorymanager.aspx
│ │ ├── categorymanager.aspx.cs
│ │ ├── login.aspx
│ │ ├── login.aspx.cs
│ │ ├── m_common.master
│ │ ├── m_common.master.cs
│ │ ├── newsmanager.aspx
│ │ └── newsmanager.aspx.cs
│ ├── App_Data
│ │ ├── newssystem_log.LDF
│ │ └── newssystem.mdf
│ ├── Bin
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── Model.dll
│ │ └── Model.pdb
│ ├── common.master
│ ├── common.master.cs
│ ├── control
│ │ ├── NewsCategory.ascx
│ │ └── NewsCategory.ascx.cs
│ ├── css
│ │ ├── common.css
│ │ ├── images
│ │ │ ├── round1_bottom.gif
│ │ │ ├── round1_middle.gif
│ │ │ ├── round1_top.gif
│ │ │ ├── round2_left_bottom.gif
│ │ │ ├── round2_left_top.gif
│ │ │ ├── round2_right_bottom.gif
│ │ │ ├── round2_right_middle.gif
│ │ │ ├── round2_right_top.gif
│ │ │ └── search.gif
│ │ ├── login.css
│ │ ├── manager_common.css
│ │ └── managercommon.css
│ ├── Default2.aspx
│ ├── Default2.aspx.cs
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── error.htm
│ ├── handler
│ │ └── WaterMark.ashx
│ ├── images
│ │ ├── error1.gif
│ │ ├── error.gif
│ │ ├── niunanlogo.gif
│ │ ├── niunanlogo.jpg
│ │ ├── niunanlogo_touming.jpg
│ │ ├── round1_bottom.gif
│ │ ├── round1_middle.gif
│ │ ├── round1_top.gif
│ │ └── tg029logo.gif
│ ├── list.aspx
│ ├── list.aspx.cs
│ ├── m_common.master
│ ├── m_common.master.cs
│ ├── newscontent.aspx
│ ├── newscontent.aspx.cs
│ ├── newscontet.aspx
│ ├── newscontet.aspx.cs
│ ├── newslist.aspx
│ ├── newslist.aspx.cs
│ ├── searchres.aspx
│ ├── searchres.aspx.cs
│ ├── web.config
│ ├── 副本 Default.aspx
│ └── 副本 Default.aspx.cs
├── 新闻发布系统.sln
└── 新闻发布系统.suo
29 directories, 127 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论