📄 view_inf.asp
字号:
<!--#INCLUDE FILE="data.asp" -->
<!--#INCLUDE FILE="check.asp" -->
<%
Set my_rs= Server.CreateObject("ADODB.Recordset")
strSql="select * from jhtdata where id="&request("view_id")
my_rs.open strSql,Conn,1,1
%>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="oa.css" rel=stylesheet>
<title>内部通知—<%=my_rs("标题")%></title>
</head>
<body style="background-image: url('images/main_bg.gif'); background-attachment: scroll; background-repeat: no-repeat; background-position: left bottom">
<div align="center">
<center>
<table border="1" width="100%" cellspacing="0" cellpadding=0 height="209" bordercolorlight=#000000 bordercolordark=#ffffff>
<tr valign=top>
<td width="21%" align="center" height="14">
主 题</td>
<td width="79%" height="14"><%=my_rs("标题")%></td>
</tr>
<tr>
<td width="21%" align="center" height="18">
发 布 人</td>
<td width="79%" height="18"><%=my_rs("部门")%> <%=my_rs("真实姓名")%></td>
</tr>
<tr>
<td width="21%" align="center" height="17">
发布时间</td>
<td width="79%" height="17"><%=my_rs("时间")%></td>
</tr>
<tr valign=top>
<td width="21%" align="center" height="122">
内 容</td>
<td width="79%" height="122"><%=my_rs("内容")%></td>
</tr>
</table>
</center>
</div>
</body>
</html>
<% my_rs.Close %>
<% my_Conn.Close %>
<% set my_Conn = nothing %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -