AP_Resume_Certificate.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. Dim resumeObj,id,Conn,action
  8. MF_Default_Conn
  9. id=trim(NoSqlHack(request.QueryString("id")))
  10. action=trim(NoSqlHack(request.QueryString("action")))
  11. Set resumeObj=New cls_resume
  12. if id<>"" then call resumeObj.getResumeInfo("certificate",id)
  13. Conn.close
  14. Set Conn=nothing
  15. %>
  16. <form name="CertificateForm" action="AP_Resume_Action.asp?action=certificate&id=" 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. <input name="txt_FetchDate" type="text" id="txt_FetchDate" value="<%=resumeObj.FetchDate%>" style="width:60%" 
  22. onfocus="new Form.Element.Observer('txt_FetchDate',1,function(){Do.these('txt_FetchDate',function(){return isEmpty('txt_FetchDate','emptyAlert')&&valiateDate('txt_FetchDate','span_Fetchdate')})});setday(this)" 
  23. onBlur="Do.these('txt_FetchDate',function(){return isEmpty('txt_FetchDate','emptyAlert')&&valiateDate('txt_FetchDate','span_Fetchdate')})" 
  24. /><span id="emptyAlert"></span><span id="span_Fetchdate"></span></td>
  25.   </tr>
  26.   <tr>
  27.     <td align="right" class="hback">证书名称:</td>
  28.     <td class="hback">
  29. <input name="txt_Certificate" type="text" id="txt_Certificate" value="<%=resumeObj.Certificate%>" style="width:60%"
  30. onfocus="Do.these('txt_Certificate',function(){return isEmpty('txt_Certificate','span_Certificate')})"
  31. onKeyUp="Do.these('txt_Certificate',function(){return isEmpty('txt_Certificate','span_Certificate')})"
  32. /><span id="span_Certificate"></span></td>
  33.   </tr>
  34.   <tr>
  35.     <td align="right" class="hback">分数(等级):</td>
  36.     <td class="hback">
  37. <input name="txt_Score" type="text" id="txt_Score" value="<%=resumeObj.Score%>" style="width:60%"
  38. onfocus="Do.these('txt_Score',function(){return isEmpty('txt_Score','span_Score')})"
  39. onKeyUp="Do.these('txt_Score',function(){return isEmpty('txt_Score','span_Score')})"
  40. /><span id="span_Score"></span></td>
  41.   </tr>
  42.   <tr>
  43.     <td class="hback">&nbsp;</td>
  44.     <td class="hback">
  45. <input type="button" name="SubmitButton" value="保存/下一步" onclick="ajaxPost('AP_Resume_Action.asp', Form.serialize('CertificateForm'),'CertificateForm','<%=action%>','<%=id%>');"/>
  46. &nbsp;&nbsp;
  47. <input type="reset" name="resetButton" value="重 设" onClick="javascript:if(confirm('确认清空所有表单输入?')){$('IntentionForm').reset();}else{return false;}" /> </td>
  48.   </tr>
  49. </table>
  50. </form>