AP_Resume_Certificate.asp
资源名称:eat.rar [点击查看]
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:3k
源码类别:
数据库编程
开发平台:
ASP/ASPX
- <!--#include file="../../../FS_Inc/Const.asp" -->
- <!--#include file="../../../FS_Inc/Function.asp" -->
- <!--#include file="../../../FS_InterFace/MF_Function.asp" -->
- <!--#include file="cls_resume.asp"-->
- <%
- Response.Charset="GB2312"
- Dim resumeObj,id,Conn,action
- MF_Default_Conn
- id=trim(NoSqlHack(request.QueryString("id")))
- action=trim(NoSqlHack(request.QueryString("action")))
- Set resumeObj=New cls_resume
- if id<>"" then call resumeObj.getResumeInfo("certificate",id)
- Conn.close
- Set Conn=nothing
- %>
- <form name="CertificateForm" action="AP_Resume_Action.asp?action=certificate&id=" method="post">
- <table width="100%" height="135" border="0" align="center" cellpadding="1" cellspacing="1" class="table">
- <tr>
- <td width="19%" align="right" class="hback">获证时间:</td>
- <td width="81%" class="hback">
- <input name="txt_FetchDate" type="text" id="txt_FetchDate" value="<%=resumeObj.FetchDate%>" style="width:60%"
- 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)"
- onBlur="Do.these('txt_FetchDate',function(){return isEmpty('txt_FetchDate','emptyAlert')&&valiateDate('txt_FetchDate','span_Fetchdate')})"
- /><span id="emptyAlert"></span><span id="span_Fetchdate"></span></td>
- </tr>
- <tr>
- <td align="right" class="hback">证书名称:</td>
- <td class="hback">
- <input name="txt_Certificate" type="text" id="txt_Certificate" value="<%=resumeObj.Certificate%>" style="width:60%"
- onfocus="Do.these('txt_Certificate',function(){return isEmpty('txt_Certificate','span_Certificate')})"
- onKeyUp="Do.these('txt_Certificate',function(){return isEmpty('txt_Certificate','span_Certificate')})"
- /><span id="span_Certificate"></span></td>
- </tr>
- <tr>
- <td align="right" class="hback">分数(等级):</td>
- <td class="hback">
- <input name="txt_Score" type="text" id="txt_Score" value="<%=resumeObj.Score%>" style="width:60%"
- onfocus="Do.these('txt_Score',function(){return isEmpty('txt_Score','span_Score')})"
- onKeyUp="Do.these('txt_Score',function(){return isEmpty('txt_Score','span_Score')})"
- /><span id="span_Score"></span></td>
- </tr>
- <tr>
- <td class="hback"> </td>
- <td class="hback">
- <input type="button" name="SubmitButton" value="保存/下一步" onclick="ajaxPost('AP_Resume_Action.asp', Form.serialize('CertificateForm'),'CertificateForm','<%=action%>','<%=id%>');"/>
-
- <input type="reset" name="resetButton" value="重 设" onClick="javascript:if(confirm('确认清空所有表单输入?')){$('IntentionForm').reset();}else{return false;}" /> </td>
- </tr>
- </table>
- </form>