gusucode.com > ASP+ACCESS在线人才招聘网(源代码+论文) > ASP+ACCESS在线人才招聘网(源代码+论文)\per_re.asp

    <!--#include file="inc/conn.asp"-->
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language=javascript>
	 function checkform()
	 { if(document.thisForm.recontent.value="")
	  { alert("回复内容不能为空");
	    document.thisForm.recontent.focus();
		return false;
	  }
	  document.thisForm.action="per_re_updata.asp"
	  document.thisForm.submit();
	  }
	</script>
<link rel="stylesheet" href="../inc/map028.css" type="text/css">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<%
  id=Request("id")
  pertype=Request("pertype")
  if id<>"" then
   if pertype="1" then
   sql="select * from job_com_per where id="&id
   else
   sql="select * from job_person_per where id="&id
   end if
  Set Rs=Server.CreateObject("Adodb.RecordSet")
  Rs.Open sql,conn,1,1
  if not Rs.Eof then%>
<form name="thisForm" method="post" action="per_re_updata.asp">
  <table width="389" border="0" cellspacing="1" cellpadding="0" height="313">
    <tr> 
      <td height="33" align="center" bgcolor="#AFD0E4">招聘求职意向</td>
    </tr>
    <tr> 
      <td height="26">内容:<br>
        <%=Rs("content")%></td>
    </tr>
    <tr> 
      <td valign="top" height="6" bgcolor="#E8F1F7">回复: 
        <input type="hidden" name="id" value="<%=id%>">
        <input type="hidden" name="pertype" value="<%=pertype%>">
      </td>
    </tr>
    <tr> 
      <td valign="top" height="65" align="center"> 
        <textarea name="recontent" cols="50" rows="5"></textarea>
      </td>
    </tr>
    <tr> 
      <td valign="top" height="16" align="center"> 
        <input type="submit" name="Submit" value="回复">
        <input type="submit" name="Submit2" onclick="javascript:window.close()" value="关闭本窗口">
      </td>
    </tr>
  </table>
</form>
<%end if
  Rs.Close
  Set conn=nothing
 end if%>
</body>
</html>