cls_resume.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:13k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <%''Copyright (c) 2006 Foosun Inc. Code by Einstein.liu
  2. Class cls_resume
  3. '■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  4. 'baseInfo
  5. Private base_BID,base_UserNumber,base_Uname,base_Sex,base_PictureExt,base_Birthday,base_CertificateClass,base_CertificateNo,base_CurrentWage,base_CurrencyType,base_WorkAge,base_Province,base_City,base_HomeTel,base_CompanyTel,base_Mobile,base_Email,base_QQ,base_isPublic,base_click,base_lastTime
  6. 'Intention
  7. Private Itn_WorkType,Itn_Salary,Itn_SelfAppraise
  8. 'WorkExp
  9. Private wep_BeginDate,wep_EndDate,wep_CompanyName,wep_CompanyKind,wep_Trade,wep_Job,wep_Department,wep_workDescription,wep_Certifier,wep_CertifierTel
  10. 'EducateExp
  11. Private  edu_BeginDate,edu_EndDate,edu_SchoolName,edu_Specialty,edu_Diploma,edu_Description 
  12. 'TrainExp
  13. Private train_BeginDate,train_EndDate,train_TrainOrgan,train_TrainAdress,train_TrainContent,train_Certificate
  14. 'language
  15. Private lng_Language,lng_Degree
  16. 'Certificate
  17. Private cer_FetchDate,cer_Certificate,cer_Score
  18. 'ProjectExp
  19. Private Pro_BeginDate,Pro_EndDate,Pro_Project,Pro_SoftSettings,Pro_HardSettings,Pro_Tools,Pro_ProjectDescript,Pro_Duty
  20. 'other
  21. Private o_title,o_content
  22. 'mail
  23. Private mailTitle,mailContent
  24. '■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  25. Public function getResumeInfo(part,id)
  26. Dim sqlstatement,resumeRs
  27. Set resumeRs=Server.CreateObject("Adodb.RecordSet")
  28. select case part
  29. case "baseinfo"    sqlstatement="select BID,UserNumber,Uname,Sex,PictureExt,Birthday,CertificateClass,CertificateNo,CurrentWage,CurrencyType,WorkAge,Province,City,HomeTel,CompanyTel,Mobile,Email,QQ,isPublic,click,lastTime from FS_AP_Resume_BaseInfo where bid="&id
  30. case "intention"   sqlstatement="select BID,UserNumber,WorkType,Salary,SelfAppraise from FS_AP_Resume_Intention where bid="&id
  31. case "workexp"     sqlstatement="select BID,UserNumber,BeginDate,EndDate,CompanyName,CompanyKind,Trade,Job,Department,Description,Certifier,CertifierTel from FS_AP_Resume_WorkExp where bid="&id
  32. case "educateexp"  sqlstatement="select BID,UserNumber,BeginDate,EndDate,SchoolName,Specialty,Diploma,Description from FS_AP_Resume_EducateExp where bid="&id
  33. case "trainexp"    sqlstatement="select BID,UserNumber,BeginDate,EndDate,TrainOrgan,TrainAdress,TrainContent,Certificate from FS_AP_Resume_TrainExp where bid="&id
  34. case "language"    sqlstatement="select BID,UserNumber,Language,Degree from FS_AP_Resume_Language where bid="&id
  35. case "certificate" sqlstatement="select BID,UserNumber,FetchDate,Certificate,Score from FS_AP_Resume_Certificate where bid="&id
  36. case "projectexp"  sqlstatement="select BID,UserNumber,BeginDate,EndDate,Project,SoftSettings,HardSettings,Tools,ProjectDescript,Duty from FS_AP_Resume_ProjectExp where bid="&id
  37. case "other"       sqlstatement="select BID,UserNumber,Title,Content from FS_AP_Resume_Other where bid="&id
  38. case "mail"        sqlstatement="select BID,UserNumber,MailName,Content from FS_AP_Resume_Mail where bid="&id
  39. End select
  40. resumeRs.open sqlstatement,Conn,1,3
  41. if resumeRs.eof then exit function
  42. if part="baseinfo" then
  43.  base_BID=resumeRs("BID")
  44.  base_UserNumber=resumeRs("UserNumber")
  45.  base_Uname=resumeRs("Uname")
  46.  base_Sex=resumeRs("Sex")
  47.  base_PictureExt=resumeRs("PictureExt")
  48.  base_Birthday=resumeRs("Birthday")
  49.  base_CertificateClass=resumeRs("CertificateClass")
  50.  base_CertificateNo=resumeRs("CertificateNo")
  51.  base_CurrentWage=resumeRs("CurrentWage")
  52.  base_CurrencyType=resumeRs("CurrencyType")
  53.  base_WorkAge=resumeRs("WorkAge")
  54.  base_Province=resumeRs("Province")
  55.  base_City=resumeRs("City")
  56.  base_HomeTel=resumeRs("HomeTel")
  57.  base_CompanyTel=resumeRs("CompanyTel")
  58.  base_Mobile=resumeRs("CompanyTel")
  59.  base_Email=resumeRs("Email")
  60.  base_QQ=resumeRs("QQ")
  61.  base_isPublic=resumeRs("isPublic")
  62.  base_click=resumeRs("click")
  63.  base_lastTime=resumeRs("lastTime")
  64. Elseif part="intention" then
  65. Itn_WorkType=resumeRs("WorkType")
  66. Itn_Salary=resumeRs("Salary")
  67. Itn_SelfAppraise=resumeRs("SelfAppraise")
  68. Elseif part="workexp" then
  69. wep_BeginDate=resumeRs("BeginDate")
  70. wep_EndDate=resumeRs("EndDate")
  71. wep_CompanyName=resumeRs("CompanyName")
  72. wep_CompanyKind=resumeRs("CompanyKind")
  73. wep_Trade=resumeRs("Trade")
  74. wep_Job=resumeRs("job")
  75. wep_Department=resumeRs("Department")
  76. wep_workDescription=resumeRs("Description")
  77. wep_Certifier=resumeRs("Certifier")
  78. wep_CertifierTel=resumeRs("CertifierTel")
  79. Elseif part="educateexp" then
  80. edu_BeginDate=resumeRs("BeginDate")
  81. edu_EndDate=resumeRs("EndDate")
  82. edu_SchoolName=resumeRs("SchoolName")
  83. edu_Specialty=resumeRs("Specialty")
  84. edu_Diploma=resumeRs("Diploma")
  85. edu_Description=resumeRs("Description")
  86. Elseif part="trainexp" then
  87. train_BeginDate=resumeRs("BeginDate")
  88. train_EndDate=resumeRs("EndDate")
  89. train_TrainOrgan=resumeRs("TrainOrgan")
  90. train_TrainAdress=resumeRs("TrainAdress")
  91. train_TrainContent=resumeRs("TrainContent")
  92. train_Certificate=resumeRs("Certificate")
  93. Elseif part="language" then
  94. lng_Language=resumeRs("Language")
  95. lng_Degree=resumeRs("Degree")
  96. Elseif part="certificate" then
  97. cer_FetchDate=resumeRs("FetchDate")
  98. cer_Certificate=resumeRs("Certificate")
  99. cer_Score=resumeRs("Score")
  100. Elseif part="projectexp" Then
  101. Pro_BeginDate=resumeRs("BeginDate")
  102. Pro_EndDate=resumeRs("EndDate")
  103. Pro_Project=resumeRs("Project")
  104. Pro_SoftSettings=resumeRs("SoftSettings")
  105. Pro_HardSettings=resumeRs("HardSettings")
  106. Pro_Tools=resumeRs("Tools")
  107. Pro_ProjectDescript=resumeRs("ProjectDescript")
  108. Pro_Duty=resumeRs("Duty")
  109. Elseif part="other" Then
  110. o_title=resumeRs("title")
  111. o_content=resumeRs("content")
  112. Elseif part="mail" Then
  113. mailTitle=resumeRs("MailName")
  114. mailContent=resumeRs("Content")
  115. End if
  116. End function
  117. 'BaseInfo■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  118. public property get bs_bid'基本信息ID
  119. bs_bid=base_BID
  120. End property
  121. public property get bs_usernumber'用户编号
  122. bs_usernumber=base_UserNumber
  123. End property
  124. public property get bs_Uname'用户名
  125. bs_Uname=base_Uname
  126. End property
  127. public property get bs_sex
  128. bs_sex=base_Sex
  129. End property
  130. public property get bs_PictureExt'图片后缀
  131. bs_PictureExt=base_PictureExt
  132. End property
  133. public property get bs_Birthday'生日
  134. bs_Birthday=base_Birthday
  135. End property
  136. public property get bs_CertificateClass'证件类型
  137. bs_CertificateClass=base_CertificateClass
  138. End property
  139. public property get bs_CertificateNo'证件号码
  140. bs_CertificateNo=base_CertificateNo
  141. End property
  142. public property get bs_CurrentWage'目前年薪
  143. bs_CurrentWage=base_CurrentWage
  144. End property
  145. public property get bs_CurrencyType'货币种类
  146. bs_CurrencyType=base_CurrencyType
  147. End property
  148. public property get bs_WorkAge'工作年限
  149. bs_WorkAge=base_WorkAge
  150. End property
  151. public property get bs_Province'所在省
  152. bs_Province=base_Province
  153. End property
  154. public property get bs_City'所在城市
  155. bs_City=base_City
  156. End property
  157. public property get bs_HomeTel'家庭电话
  158. bs_HomeTel=base_HomeTel
  159. End property
  160. public property get bs_CompanyTel'公司电话
  161. bs_CompanyTel=base_CompanyTel
  162. End property
  163. public property get bs_Mobile'移动电话
  164. bs_Mobile=base_Mobile
  165. End property
  166. public property get bs_Email'电子邮件
  167. bs_Email=base_Email
  168. End property
  169. public property get bs_QQ'QQ号码
  170. bs_QQ=base_QQ
  171. End property
  172. public property get bs_isPublic'是否公开
  173. bs_isPublic=base_isPublic
  174. End property
  175. public property get bs_click'被浏览数量
  176. bs_click=base_click
  177. End property
  178. public property get bs_lastTime'最后修改时间
  179. bs_lastTime=base_lastTime
  180. End property
  181. 'intention■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  182. 'Itn_WorkType,Itn_Salary,Itn_SelfAppraise
  183. public property get WorkTypee'工作类型
  184. WorkTypee=Itn_WorkType
  185. End property
  186. public property get Salary'期望工资
  187. Salary=Itn_Salary
  188. End property
  189. public property get SelfAppraise'自我介绍
  190. SelfAppraise=Itn_SelfAppraise
  191. End property
  192. 'WorkExp■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  193. 'wep_BeginDate,wep_EndDate,wep_CompanyName,wep_CompanyKind,wep_Trade,wep_Job,wep_Department,wep_workDescription,wep_Certifier,wep_CertifierTel
  194. public property get wBeginDate'开始时间
  195. wBeginDate=wep_BeginDate
  196. End property
  197. public property get wEndDate'结束时间
  198. wEndDate=wep_EndDate
  199. End property
  200. public property get CompanyName'公司名称
  201. CompanyName=wep_CompanyName
  202. End property
  203. public property get CompanyKind'公司性质
  204. CompanyKind=wep_CompanyKind
  205. End property
  206. public property get Trade'行业
  207. Trade=wep_Trade
  208. End property
  209. public property get Job'职业
  210. Job=wep_Job
  211. End property
  212. public property get Department'部门
  213. Department=wep_Department
  214. End property
  215. public property get workDescription'工作描述
  216. workDescription=wep_workDescription
  217. End property
  218. public property get Certifier'证明人
  219. Certifier=wep_Certifier
  220. End property
  221. public property get CertifierTel'证明人联系方式
  222. CertifierTel=wep_CertifierTel
  223. End property
  224. 'EducateExp■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  225. 'edu_BeginDate,edu_EndDate,edu_SchoolName,edu_Specialty,edu_Diploma,edu_Description 
  226. public property get eBeginDate'开始时间
  227. eBeginDate=edu_BeginDate
  228. End property
  229. public property get eEndDate'结束时间
  230. eEndDate=edu_EndDate
  231. End property
  232. public property get SchoolName'学校名称
  233. SchoolName=edu_SchoolName
  234. End property
  235. public property get Specialty'专业
  236. Specialty=edu_Specialty
  237. End property
  238. public property get Diploma'学历
  239. Diploma=edu_Diploma
  240. End property
  241. public property get eDescription'专业描述
  242. eDescription=edu_Description
  243. End property
  244. 'TrainExp■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  245. 'train_BeginDate,train_EndDate,train_TrainOrgan,train_TrainAdress,train_TrainContent,train_Certificate
  246. public property get tBeginDate'
  247. tBeginDate=train_BeginDate
  248. End property
  249. public property get tEndDate'
  250. tEndDate=train_EndDate
  251. End property
  252. public property get TrainOrgan'培训机构
  253. TrainOrgan=train_TrainOrgan
  254. End property
  255. public property get TrainAdress'机构地址
  256. TrainAdress=train_TrainAdress
  257. End property
  258. public property get TrainContent'培训内容
  259. TrainContent=train_TrainContent
  260. End property
  261. public property get tCertificate'证书
  262. tCertificate=train_Certificate
  263. End property
  264. 'language■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  265. ' Language,Degree
  266. public property get Language'语言
  267. Language=lng_Language
  268. End property
  269. public property get Degree'等级
  270. Degree=lng_Degree
  271. End property
  272. 'Certificat■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  273. 'cer_FetchDate,cer_Certificate,cer_Score
  274. public property get FetchDate'获证时间
  275. FetchDate=cer_FetchDate
  276. End property
  277. public property get Certificate'证书名
  278. Certificate=cer_Certificate
  279. End property
  280. public property get Score'分数
  281. Score=cer_Score
  282. End property
  283. 'Project■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  284. 'Pro_BeginDate,Pro_EndDate,Pro_Project,Pro_SoftSettings,Pro_HardSettings,Pro_Tools,Pro_ProjectDescript,Pro_Duty
  285. public property get pBeginDate'开始时间
  286. pBeginDate=Pro_BeginDate
  287. End property
  288. public property get pEndDate'结束时间
  289. pEndDate=Pro_EndDate
  290. End property
  291. public property get Project'项目名称
  292. Project=Pro_Project
  293. End property
  294. public property get SoftSettings'软件环境
  295. SoftSettings=Pro_SoftSettings
  296. End property
  297. public property get HardSettings'硬件环境
  298. HardSettings=Pro_HardSettings
  299. End property
  300. public property get Tools'开发工具
  301. Tools=Pro_Tools
  302. End property
  303. public property get ProjectDescript'项目描述
  304. ProjectDescript=Pro_ProjectDescript
  305. End property
  306. public property get Duty'职责
  307. Duty=Pro_Duty
  308. End property
  309. 'Other■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  310. 'title,content
  311. public property get title'主题
  312. title=o_title
  313. End property
  314. public property get content'内容
  315. content=o_content
  316. End property
  317. 'email■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  318. 'mailTitle,mailContent
  319. public property get mtitle'主题
  320. mtitle=mailTitle
  321. End property
  322. public property get mcontent'内容
  323. mcontent=mailContent
  324. End property
  325. '■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  326. End Class
  327. %>