📄 read_letter.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../conn/conn.asp"-->
<!--#include file="../inc/Commoncode.asp"-->
<!--#include file="../inc/CommonFunction.asp"-->
<!--#include file="checkcmember.asp" -->
<%
link="Read_Letter.asp"
myreceive_id=request.QueryString("letter_id")
if myreceive_id="" or isnumeric(myreceive_id)=false then
response.Write("<script>alert(""错误的ID参数!"");window.close();</script>")
response.End()
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>查看求职信--<%=SiteTitle%></title>
<link href="../css/<%=MainWebCss%>.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<div id="head">
<div id="logo"><img src="<%=SiteUrl&InstallDir&LogoUrl%>" alt="欢迎访问<%=SiteName%>" /></div>
<div id="banner"><%Call Loginshow()%></div>
<ul><%Call Membernav(2)%></ul>
</div>
<%Call Cmembermenu(3)%>
<div class="maintaba">
<span class="maintit">查看求职信</span>
<%
set rs=server.CreateObject("adodb.recordset")
sql="select * from JOB_C_myreceive where myreceive_id="&myreceive_id
rs.open sql,conn,1,3
if not(rs.eof) then
rs("myreceive_read")=1
%>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" style="border:#efefef 1px solid;">
<tr>
<td height="30" style="border:#efefef 1px solid;"><div align="center" style="font-size:12px; font-weight:bold">求职人:<%=rs("myreceive_name")%></div></td>
</tr>
<tr>
<td height="200" valign="top"><%=rs("myreceive_content")%></td>
</tr>
</table>
<%
rs.update
end if
rs.close
set rs=nothing
%>
<div align="center"><br class="br">
<input type="button" name="Submit" value="关闭本页" onClick="javascript:window.close()">
</div>
</div>
<%call bottom()
conn.close:set conn=nothing%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -