AP_Resume_Mail.asp
Upload User: jisenq
Upload Date: 2014-06-29
Package Size: 7216k
Code Size: 2k
Category:

ADO-ODBC

Development Platform:

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("mail",id)
  13. Conn.close
  14. Set Conn=nothing
  15. %>
  16. <form name="MailForm" action="AP_Resume_Action.asp?action=mail&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_MailName" type="text" id="txt_MailName" value="<%=resumeObj.mtitle%>" style="width:60%" 
  22. onfocus="Do.these('txt_MailName',function(){return isEmpty('txt_MailName','span_mailName')})"
  23. onKeyUp="Do.these('txt_MailName',function(){return isEmpty('txt_MailName','span_mailName')})"
  24. /><span id="span_mailName"></span></td>
  25.   </tr>
  26.   <tr>
  27.     <td align="right" class="hback">内容:</td>
  28.     <td class="hback"><textarea name="txt_Content" rows="10" style="width:60%"
  29. onfocus="Do.these('txt_Content',function(){return isEmpty('txt_Content','span_content')})"
  30. onKeyUp="Do.these('txt_Content',function(){return isEmpty('txt_Content','span_content')})"
  31. ><%=resumeObj.mContent%></textarea><span id="span_content"></span></td>
  32.   </tr>
  33.   <tr>
  34.     <td class="hback">&nbsp;</td>
  35.     <td class="hback">
  36. <input type="button" name="SubmitButton" value="保存" onclick="ajaxPost('AP_Resume_Action.asp', Form.serialize('MailForm'),'MailForm','<%=action%>','<%=id%>');"/>
  37. &nbsp;&nbsp;
  38. <input type="reset" name="resetButton" value="重 设" onClick="javascript:if(confirm('确认清空所有表单输入?')){$('IntentionForm').reset();}else{return false;}" /> </td>
  39.   </tr>
  40. </table>
  41. </form>