基于WEB的房屋出租管理系统的设计与实现2
下载后可任意编辑 基于WEB的房屋出租管理系统的设计与实现 摘 要 随着互联网技术的迅猛进展,越来越多的商业活动都从传统的现实社会中进展到了网络上。房屋的出租业务也从现实生活中走上了网络空间。伴随着这类业务的开展,如何对出租房屋进行高效,合理的管理这个问题越来越凸现出来。针对这一需求,本文设计并实现了一套基于Web的房屋出租管理系统,力求能简洁高效地解决房屋出租管理方面的问题。 本系统采纳B/S模式,基于ASP.net平台开发,后台数据库采纳SQL Server2000,WEB服务器采纳IIS 5.0。系统主要由以下几个模块组成:数据发布模块,数据查询模块,数据管理模块,身份验证模块,系统管理模块,数据计算模块。系统实现了用户登录,信息发布,信息修改,房屋收费项设置,房屋收费计算,信息查询,用户留言,管理员发布公告等功能。使用本系统,客户端用户只需要通过浏览器访问就可以实现对房屋出租信息管理的操作。 关键词:基于Web的房屋出租;管理系统;数据库 Design and Implementation of Web-based House Renting Management System Abstract With rapidly developing of the Internet technology, commercial activities are developing from the traditional society to the network. For example, the house renting business is dealing online, which used to appear in real life. With such business developing, how to manage the house renting efficiently and rationally become important. In response to this demand, the paper designed and implemented a Web-based house renting management system; it strives to solve problems of house renting management simply and efficiently. The system uses B/S model, based on the ASP.net development plat, database server is SQL Server 2000, Web server is IIS 5.0. System is mainly composed of the following modules: ination publication module, data query module, data management module, authentication module, system management module, and data counting module. System achieves the following functions: users’ login, ination publication, ination modification, setting up charges on housing, calculating house renting fees, ination inquiries, user messages, and administrators issued a public notice, etc. By using this system, the client users can achieve the house renting ination management operation through the browser. Key words: web-based house renting; management system; Database 目 录 论文总页数:22页 1引言1 1.1课题背景1 1.2 国内外讨论现状1 1.3 本课题讨论的意义1 1.4 本课题的讨论方法1 2 开发工具和采纳技术介绍2 2.1 开发工具简介2 2.1.1 Sql Server20002 2.1.2 Dreamweaver 82 2.1.3 IIS 5.02 2.2 采纳技术简介3 2.2.1 ASP技术简介3 2.2.2 B/S(Browser/Server)结构3 2.2.3 Web数据库访问原理3 3 系统总体设计4 3.1系统概要4 3.2 系统构成4 3.3身份验证模块5 3.3.1会员登陆5 3.3.2 管理员登陆5 3.4信息发布5 3.4.1 游客留言发布5 3.4.2 会员发布信息5 3.4.3 管理员发布公告消息5 3.5 数据查询5 3.5.1 查看所有房屋信息和留言信息5 3.5.2 模糊查询房屋信息5 3.5.3 会员查看自己发布的信息6 3.6 数据管理6 3.6.1 密码修改6 3.6.2 删除留言6 3.6.3 编辑房屋信息6 3.7 数据计算6 3.7.1 会员设定收费标准6 3.7.2 计算所有收费项目并详细显示6 3.8 数据库设计7 3.8.1 管理员信息表admin7 3.8.2 房屋管理表 house_manage7 3.8.3 房屋留言表 house_note7 3.8.4 房屋信息表 info8 3.8.5 新闻表 news8 3.8.6 留言表 note9 3.8.7 用户表 user9 3.8.8 房屋推举表 tuijian9 3.9 系统工作流程9 3.9.1 用户工作流程9 3.9.2 管理员工作流程10 4 系统详细设计与实现11 4.1数据库访问的实现11 4.1.1 WEB数据库连接代码11 4.2 登陆模块代码实现12 4.2.1 会员登陆实现12 4.3查询模块的实现14 4.4 数据插入更新删除16 4.4.1 数据插入16 4.4.2数据更新17 4.4.3 数据删除17 4.4.4 数据计算17 4.5 开发中所遇到的问题及解决办法19 4.5.1 开发中遇到的问题19 4.5.2 解决办法19 5系统测试19 5.1测试内容19 5.2测试结果和分析19 结 论20 参考文献20 致 谢21 声 明22 下载后可任意编辑 3.2 系统构成 图3-1 系统构成 在各个模块中