实例介绍
【实例简介】
系统功能: (1)设备类别管理:方便设备的管理,可以添加新类别名称和修改已经存在的类别名称 (2)设备信息管理:新设备购买入库,对设备的各个属性进行维护和查询 (3)设备借还管理:对设备的外借和归还等业务进行记录和查询 (4)设备维修管理:设备出修,返修,并可以按条件查询维修信息 (5)设备报废管理:对已经无法使用的设备报废处理,同时可以进行查询 (6)系统管理:可以设置系统的登陆密码,系统说明等。 系统特点: (1)登陆加入图片验证码进行身份验证,密码进行md5哈希加密 (2)系统采用美化的菜单和GridView控件 (3)每个设备支持图片功能,当上传新图片,系统会自动删掉老图片 (3)最优化数据库设计,解决了数据一致性问题 (4)程序使用三层架构思想,采用完全面向对象的思想方法设计
【实例截图】
【核心代码】
24fb3ba6b3322178f9259bac8fe80082.rar
└── downcode.com
├── downcode.com.txt
├── sylDevice
│ ├── about.html
│ ├── App_Code
│ │ ├── BusinessLogicLayer
│ │ │ ├── Admin.cs
│ │ │ ├── Department.cs
│ │ │ ├── DeviceArriveTimeInfo.cs
│ │ │ ├── DeviceInfo.cs
│ │ │ ├── DeviceType.cs
│ │ │ ├── LendInfo.cs
│ │ │ ├── RepairInfo.cs
│ │ │ └── RubbishInfo.cs
│ │ ├── DataAccessHelper
│ │ │ └── SqlString.cs
│ │ ├── DataAccessLayer
│ │ │ └── DataBase.cs
│ │ └── downcode.com.txt
│ ├── css
│ │ └── style.css
│ ├── DB
│ │ ├── DeviceInfo_Data.MDF
│ │ ├── DeviceInfo_log.LDF
│ │ └── sql.txt
│ ├── desk.aspx
│ ├── DeviceArriveTime.aspx
│ ├── DeviceArriveTime.aspx.cs
│ ├── deviceImg
│ │ ├── 20081216204711.jpg
│ │ ├── 20081216205031.jpg
│ │ └── from.gif
│ ├── DeviceLend.aspx
│ ├── DeviceLend.aspx.cs
│ ├── DeviceLendList.aspx
│ ├── DeviceLendList.aspx.cs
│ ├── DeviceManage.aspx
│ ├── DeviceManage.aspx.cs
│ ├── DeviceRepairBack.aspx
│ ├── DeviceRepairBack.aspx.cs
│ ├── DeviceRepairDetails.aspx
│ ├── DeviceRepairDetails.aspx.cs
│ ├── DeviceRepairList.aspx
│ ├── DeviceRepairList.aspx.cs
│ ├── DeviceRepairOut.aspx
│ ├── DeviceRepairOut.aspx.cs
│ ├── DeviceRepairQuery.aspx
│ ├── DeviceRepairQuery.aspx.cs
│ ├── DeviceReturnBack.aspx
│ ├── DeviceReturnBack.aspx.cs
│ ├── DeviceRubbishAdd.aspx
│ ├── DeviceRubbishAdd.aspx.cs
│ ├── DeviceRubbishInfoClear.aspx
│ ├── DeviceRubbishInfoClear.aspx.cs
│ ├── DeviceRubbishQuery.aspx
│ ├── DeviceRubbishQuery.aspx.cs
│ ├── DeviceTypeDel.aspx
│ ├── DeviceTypeDel.aspx.cs
│ ├── DeviceTypeEdit.aspx
│ ├── DeviceTypeEdit.aspx.cs
│ ├── DeviceTypeManage.aspx
│ ├── DeviceTypeManage.aspx.cs
│ ├── DeviceUpdate.aspx
│ ├── DeviceUpdate.aspx.cs
│ ├── downcode.com.txt
│ ├── images
│ │ ├── ADD.gif
│ │ ├── admin_bg_1.gif
│ │ ├── admin_left_1.gif
│ │ ├── admin_left_2.gif
│ │ ├── admin_left_3.gif
│ │ ├── admin_left_4.gif
│ │ ├── admin_left_5.gif
│ │ ├── admin_left_6.gif
│ │ ├── admin_left_7.gif
│ │ ├── admin_left_8.gif
│ │ ├── backpic.jpg
│ │ ├── bg.gif
│ │ ├── borrow.gif
│ │ ├── catbg.gif
│ │ ├── default_6.gif
│ │ ├── delete.gif
│ │ ├── edit.gif
│ │ ├── error.gif
│ │ ├── flag.gif
│ │ ├── from.gif
│ │ ├── headerbg.gif
│ │ ├── help.gif
│ │ ├── ico29.gif
│ │ ├── list.gif
│ │ ├── lock.gif
│ │ ├── NoImage.jpg
│ │ ├── print.jpg
│ │ ├── title_bg_quit.gif
│ │ ├── title.gif
│ │ ├── title.jpg
│ │ └── update.gif
│ ├── login.aspx
│ ├── login.aspx.cs
│ ├── logout.aspx
│ ├── main.aspx
│ ├── main.aspx.cs
│ ├── menu.aspx
│ ├── menu.aspx.cs
│ ├── NewDeviceAdd.aspx
│ ├── NewDeviceAdd.aspx.cs
│ ├── PasswordSet.aspx
│ ├── PasswordSet.aspx.cs
│ ├── seltime.aspx
│ ├── UserControl
│ │ ├── WebFootControl.ascx
│ │ └── WebHeadControl.ascx
│ ├── Validate.aspx
│ ├── Validate.aspx.cs
│ ├── web.config
│ ├── 中国源码下载站.url
│ ├── 源码必读.txt
│ └── 程序使用说明.txt
└── 中国源码下载站.url
11 directories, 108 files
系统功能: (1)设备类别管理:方便设备的管理,可以添加新类别名称和修改已经存在的类别名称 (2)设备信息管理:新设备购买入库,对设备的各个属性进行维护和查询 (3)设备借还管理:对设备的外借和归还等业务进行记录和查询 (4)设备维修管理:设备出修,返修,并可以按条件查询维修信息 (5)设备报废管理:对已经无法使用的设备报废处理,同时可以进行查询 (6)系统管理:可以设置系统的登陆密码,系统说明等。 系统特点: (1)登陆加入图片验证码进行身份验证,密码进行md5哈希加密 (2)系统采用美化的菜单和GridView控件 (3)每个设备支持图片功能,当上传新图片,系统会自动删掉老图片 (3)最优化数据库设计,解决了数据一致性问题 (4)程序使用三层架构思想,采用完全面向对象的思想方法设计
【实例截图】
【核心代码】
24fb3ba6b3322178f9259bac8fe80082.rar
└── downcode.com
├── downcode.com.txt
├── sylDevice
│ ├── about.html
│ ├── App_Code
│ │ ├── BusinessLogicLayer
│ │ │ ├── Admin.cs
│ │ │ ├── Department.cs
│ │ │ ├── DeviceArriveTimeInfo.cs
│ │ │ ├── DeviceInfo.cs
│ │ │ ├── DeviceType.cs
│ │ │ ├── LendInfo.cs
│ │ │ ├── RepairInfo.cs
│ │ │ └── RubbishInfo.cs
│ │ ├── DataAccessHelper
│ │ │ └── SqlString.cs
│ │ ├── DataAccessLayer
│ │ │ └── DataBase.cs
│ │ └── downcode.com.txt
│ ├── css
│ │ └── style.css
│ ├── DB
│ │ ├── DeviceInfo_Data.MDF
│ │ ├── DeviceInfo_log.LDF
│ │ └── sql.txt
│ ├── desk.aspx
│ ├── DeviceArriveTime.aspx
│ ├── DeviceArriveTime.aspx.cs
│ ├── deviceImg
│ │ ├── 20081216204711.jpg
│ │ ├── 20081216205031.jpg
│ │ └── from.gif
│ ├── DeviceLend.aspx
│ ├── DeviceLend.aspx.cs
│ ├── DeviceLendList.aspx
│ ├── DeviceLendList.aspx.cs
│ ├── DeviceManage.aspx
│ ├── DeviceManage.aspx.cs
│ ├── DeviceRepairBack.aspx
│ ├── DeviceRepairBack.aspx.cs
│ ├── DeviceRepairDetails.aspx
│ ├── DeviceRepairDetails.aspx.cs
│ ├── DeviceRepairList.aspx
│ ├── DeviceRepairList.aspx.cs
│ ├── DeviceRepairOut.aspx
│ ├── DeviceRepairOut.aspx.cs
│ ├── DeviceRepairQuery.aspx
│ ├── DeviceRepairQuery.aspx.cs
│ ├── DeviceReturnBack.aspx
│ ├── DeviceReturnBack.aspx.cs
│ ├── DeviceRubbishAdd.aspx
│ ├── DeviceRubbishAdd.aspx.cs
│ ├── DeviceRubbishInfoClear.aspx
│ ├── DeviceRubbishInfoClear.aspx.cs
│ ├── DeviceRubbishQuery.aspx
│ ├── DeviceRubbishQuery.aspx.cs
│ ├── DeviceTypeDel.aspx
│ ├── DeviceTypeDel.aspx.cs
│ ├── DeviceTypeEdit.aspx
│ ├── DeviceTypeEdit.aspx.cs
│ ├── DeviceTypeManage.aspx
│ ├── DeviceTypeManage.aspx.cs
│ ├── DeviceUpdate.aspx
│ ├── DeviceUpdate.aspx.cs
│ ├── downcode.com.txt
│ ├── images
│ │ ├── ADD.gif
│ │ ├── admin_bg_1.gif
│ │ ├── admin_left_1.gif
│ │ ├── admin_left_2.gif
│ │ ├── admin_left_3.gif
│ │ ├── admin_left_4.gif
│ │ ├── admin_left_5.gif
│ │ ├── admin_left_6.gif
│ │ ├── admin_left_7.gif
│ │ ├── admin_left_8.gif
│ │ ├── backpic.jpg
│ │ ├── bg.gif
│ │ ├── borrow.gif
│ │ ├── catbg.gif
│ │ ├── default_6.gif
│ │ ├── delete.gif
│ │ ├── edit.gif
│ │ ├── error.gif
│ │ ├── flag.gif
│ │ ├── from.gif
│ │ ├── headerbg.gif
│ │ ├── help.gif
│ │ ├── ico29.gif
│ │ ├── list.gif
│ │ ├── lock.gif
│ │ ├── NoImage.jpg
│ │ ├── print.jpg
│ │ ├── title_bg_quit.gif
│ │ ├── title.gif
│ │ ├── title.jpg
│ │ └── update.gif
│ ├── login.aspx
│ ├── login.aspx.cs
│ ├── logout.aspx
│ ├── main.aspx
│ ├── main.aspx.cs
│ ├── menu.aspx
│ ├── menu.aspx.cs
│ ├── NewDeviceAdd.aspx
│ ├── NewDeviceAdd.aspx.cs
│ ├── PasswordSet.aspx
│ ├── PasswordSet.aspx.cs
│ ├── seltime.aspx
│ ├── UserControl
│ │ ├── WebFootControl.ascx
│ │ └── WebHeadControl.ascx
│ ├── Validate.aspx
│ ├── Validate.aspx.cs
│ ├── web.config
│ ├── 中国源码下载站.url
│ ├── 源码必读.txt
│ └── 程序使用说明.txt
└── 中国源码下载站.url
11 directories, 108 files
标签:
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论