fostegeopen.asp

来自「目前人力资源管理系统的发展已经相对成熟」· ASP 代码 · 共 38 行

ASP
38
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file=DataBase/conn.asp-->
<%

set rs=server.CreateObject("adodb.recordset")
sql="select * from tb_Foster_f where id="&request("id")
rs.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>评估</title>
<style type="text/css">
<!--
body,td,th {
	font-size: 12px;
}
body {
	background-color: #efefef;
}
-->
</style></head>

<body >
<table width="330" border="0" align="center" cellspacing="0">
  <tr>
    <td>评估:</td>
  </tr>
  <tr>
    <td height="1" bgcolor="#000000"></td>
  </tr>
  <tr>
    <td><%if not rs.eof then%><%=htmlcode(server.htmlencode(rs("pinggu")))%><%else%>暂无评估<%end if%></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?