|
摘 要 本系统是按照软件工程的要求,用ASP(Active Server Page)编制的“网上求职招聘系统”。此系统采用当前流行的网页动态编程技术,对HTML的基本操作和ASP的各内置对象及ASP与数据库的连接使用有所涉及。此系统能适用于网络上一般的求职招聘的需要。对于不同的用户,可分为个人求职和公司招聘,使之具有不同的权限。 提供给用户进入系统的入口中,用户注册后进入相关的主页面。求职个人可以设置个人资料,发布求职信息,查询招聘单位,向招聘单位发送求职信函,查收公司录取信息等。招聘单位进入主菜单后可以设置公司资料,发布招聘信息,查询求职个人信息,初步录取个人后进行比较,然后正式录取个人,向求职个人发送招聘信函等等。
关键词: ASP ACCESS数据库 求职招聘系统 求职个人 招聘公司
Abstract According to the request of the software engineering, ASP(the Active Server Page) is used in this system "seeking a job and inviting for a job on the net".The system adopts dynamic programming technique of the web page currently, involving basic operation of HTML and each inside object of ASP and usage of conjuncting ASP to the database.This system is applicable to “seeking a job and inviting for a job on the net” generally. The system is divided into seeking job of personal and inviting of company for the different customer , and make it have different legal power. In the entrance provided by system to the customer, the customer registers to go into a related main page.Person seeking for a job can establish personal data, publish information for seeking a job, search a department of inviting for the job, send out a letter to the department for seeking the job, checking and accept company acceptance information etc.. A department can establish the data of company after enter the main page, publish the information for jobs, search the information of the person seeking jobs, compare the information after first step of admitting personal applicaton, then accepte the person formally, send out a letter to the person, check and accept personal information for seeking job etc..
Keywords: ASP ACCESS database system of inviting for a job job-hunter job-offering corporaton
目 录 前言-----------------------------------------------------------------0 1 毕业设计的任务 目的 要求------------------------------------------1 1.1 设计目的-------------------------------------------------------1 1.2 设计任务-------------------------------------------------------1 1.3 设计要求-------------------------------------------------------1 2 需求分析-----------------------------------------------------------2 2.1 任务概述-------------------------------------------------------2 2.2 需求分析-------------------------------------------------------2 2.3 系统流程与结构-------------------------------------------------2 2.4 系统的性能指标-------------------------------------------------3 3 软件开发语言简介---------------------------------------------------5 3.1 ASP简介--------------------------------------------------------5 3.2 ASP内置对象----------------------------------------------------6 3.3 ASP与数据库的存取操作------------------------------------------6 3.4 VB Scirpt语言的概述--------------------------------------------7 4 系统总体设计--------------------------------------------------------9 4.1 主要功能模块设计------------------------------------------------9 4.2 数据库设计与实现------------------------------------------------9 5 详细设计-----------------------------------------------------------13 5.1 会员注册系统模块-----------------------------------------------13 5.2 求职个人管理功能-----------------------------------------------17 5.3 招聘单位管理功能-----------------------------------------------30 6 系统使用说明书-----------------------------------------------------37 6.1 服务器软件配置-------------------------------------------------37 6.2 ODBC数据源的设置-----------------------------------------------37 总结-----------------------------------------------------------------38 致谢-----------------------------------------------------------------39 主要参考文献---------------------------------------------------------40 附录1:部分源代码--------------------------------------------------41 附录2:英文文献----------------------------------------------------53
前 言 随着信息化技术的不断发展,网络及其应用己经渗透到社会的各个领域,所到得的成功应用是不言而喻的.为了更好适应网络社会,现在各个城市,甚至企业自身都在积极的组建自己的网站,而网上招聘系统己经成为其中重要的一部分了. 本系统就是这样一个应时代呼唤而诞生的网上求职招聘系统.其主要程序采用ASP编制,应用动态网页的编程技术,通过HTML技术和ASP与WEB数据库的存取操作,完成本系统的主体设计.本系统是用Microsoft Access设计Web数据库的,大部分操作都是通过对数据库的操作来实现.数据库的设计采用当前通用的关系数据库模式,数据库的访问采用现在流行的ADO数据库访问技术. 本系统主要分为论坛会员注册模块,求职个人功能管理模块,招聘公司功能管理模块. 由于此类软件本人也是只初次涉及,所以也只对系统主要功能进行了实现,加之本人水平有限,时间仓促,本文如有谬误不妥之外,敬请老师和同学不吝指教.
1 毕业设计的任务 目的 要求 1.1 设计目的 随着WWW应用的兴起,基于http协议的Web网上求职招聘系统发展起来,网上求职招聘系统可以使个人或单位可以足不出户便能知道全国的公司或个人的招聘求职信息,并可以进行简单的信息交流。 1.2 设计任务 1.了解网络的计算模式,并在微软Windows操作系统上构建Web服务器。 2.了解网络数据库原理及相关技术。 3,熟悉ASP语言及access数据库的操作。 4,利用ASP语言并参考各种现有招聘系统开发简单的网上求职招聘系统。 5.网上求职招聘系统的调试,运行。 ................................................................
|