📄 read_letter.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../conn/conn.asp"-->
<!--#include file="../inc/Commoncode.asp"-->
<!--#include file="../inc/CommonFunction.asp"-->
<!--#include file="checkpmember.asp" -->
<%
myinterview_id=request.QueryString("letter_id")
if myinterview_id="" or isnumeric(myinterview_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(1)%></ul>
</div>
<%Call Pmembermenu(3)%>
<div class="maintaba">
<span class="maintit">查看面试通知</span>
<%
set rs=server.CreateObject("adodb.recordset")
sql="select * from JOB_P_myinterview where myinterview_id="&myinterview_id
rs.open sql,conn,1,3
if not(rs.eof) then
rs("myinterview_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("myinterview_title")%></div></td>
</tr>
<tr>
<td height="30" style="border:#efefef 1px solid;"><div align="center">面试公司:<%=rs("myinterview_comname")%></div></td>
</tr>
<tr>
<td height="200" valign="top"><%=rs("myinterview_content")%></td>
</tr>
</table>
<%
rs.update
end if
rs.close
set rs=nothing
%>
<div align="center"><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 + -