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

数据库编程

开发平台:

ASP/ASPX

  1. <!--#include file="../../../FS_Inc/Const.asp" -->
  2. <!--#include file="../../../FS_Inc/Function.asp" -->
  3. <!--#include file="../../../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="cls_resume.asp"-->
  5. <%
  6. Response.Charset="GB2312"
  7. session("resumeStep")="baseinfo"
  8. Dim resumeObj,id,Conn
  9. MF_Default_Conn
  10. id=trim(NoSqlHack(request.QueryString("id")))
  11. Set resumeObj=New cls_resume
  12. if id<>"" then call resumeObj.getResumeInfo("intention",id)
  13. Conn.close
  14. Set Conn=nothing
  15. %>
  16. <form name="IntentionForm" action="" method="post">
  17. <table width="100%" height="135" border="0" align="center" cellpadding="1" cellspacing="1" class="table">
  18.   <tr>
  19.     <td width="19%" align="right" class="hback">工作类型:</td>
  20.     <td width="81%" class="hback">
  21. <select name="sel_WorkType">
  22.   <option value="1" <%if resumeObj.WorkTypee="1" then Response.Write("selected")%>>全 职</option>
  23.   <option value="2" <%if resumeObj.WorkTypee="2" then Response.Write("selected")%>>兼 职</option>
  24.   <option value="3" <%if resumeObj.WorkTypee="3" then Response.Write("selected")%>>实 习</option>
  25.   <option value="4" <%if resumeObj.WorkTypee="4" then Response.Write("selected")%>>全职/兼职</option>
  26.     </select>
  27.     </td>
  28.   </tr>
  29.   <tr>
  30.     <td align="right" class="hback">期望工资:</td>
  31.     <td class="hback"><select name="sel_Salary" id="sel_Salary">
  32.       <option value="1"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>1500以下</option>
  33.       <option value="2"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>1500-1999</option>
  34.       <option value="3"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>2000-2999</option>
  35.       <option value="4"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>3000-4499</option>
  36.       <option value="5"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>4500-5999</option>
  37.       <option value="6"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>6000-7999</option>
  38.       <option value="7"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>8000-9999</option>
  39.       <option value="8"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>10000-14999</option>
  40.       <option value="9"  <%if resumeObj.Salary="1" then Response.Write("selected")%>>15000-19999</option>
  41.       <option value="10" <%if resumeObj.Salary="1" then Response.Write("selected")%>>20000-29999</option>
  42.       <option value="11" <%if resumeObj.Salary="1" then Response.Write("selected")%>>30000-49999</option>
  43.       <option value="12" <%if resumeObj.Salary="1" then Response.Write("selected")%>>50000以上</option>
  44.         </select></td>
  45.   </tr>
  46.   <tr>
  47.     <td align="right" class="hback">自我评价:</td>
  48.     <td class="hback"><textarea name="txt_SelfAppraise" rows="20" style="width:80%" onfocus="this.className='RightInput'"><%=resumeObj.SelfAppraise%></textarea></td>
  49.   </tr>
  50.   <tr>
  51.     <td class="hback">&nbsp;</td>
  52.     <td class="hback">
  53. <input type="button" name="SubmitButton" value="保存/下一步" onclick="ajaxPost('AP_Resume_Action.asp', Form.serialize('IntentionForm'),'IntentionForm','edit','<%=id%>');"/>
  54. &nbsp;
  55. <input type="reset" name="resetButton" value="重 设" onClick="javascript:if(confirm('确认清空所有表单输入?')){$('IntentionForm').reset();}else{return false;}" />
  56. </td>
  57.   </tr>
  58. </table>
  59. </form>