📄 feedback_view.asp
字号:
<!--#include file="check_admin.asp"-->
<!--#include file="conn_admin.asp" -->
<%
Set rs = Server.CreateObject("ADODB.Recordset")
sql="SELECT * FROM feedback where ID=" & request("info_id")
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write "<p align='center'> 出现错误:该信息可能已经被删除!</p>"
else
%>
<html>
<head>
<title>详细信息</title>
<link href="sys_admin.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
<body link="#000000" vlink="#000000" alink="#000000" leftmargin="0" topmargin="0">
<div align="center">
<center>
<table width="100%" border="1" cellspacing="0" cellpadding="0" class="p9" bordercolor="#FFFFFF" style="border-collapse: collapse">
<tr bgcolor="#666666">
<td height="21" colspan="2" align="right"> <div align="center"><strong><font color="#FFFFFF">详细信息显示窗口</font></strong></div></td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">编号: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"> <% =rs("ID") %> </td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">公司名称: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"> <% =rs("title") %> </td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">建站类型: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"><font color="#ff0000">
<% =rs("leixing") %>
</font></td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">联系人: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"> <% =rs("name") %> </td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">联系电话: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"><a href="mailto:<% =rs("email") %>">
</a> <% =rs("phone") %> </td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">E-mail: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"><a href="mailto:<% =rs("email") %>">
<% =rs("email") %>
</a> </td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">QQ</font><font color="#FFFFFF">:
</font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"> <% =rs("area") %> </td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">地
址: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"> <% =rs("address") %> </td>
</tr>
<tr>
<td width="72" bgcolor="#666666" align="right" height="24"><div align="right"><font color="#FFFFFF">详细信息: </font></div></td>
<td width="348" bgcolor="#CCCCCC" height="21"><%=rs("content")%></td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="21" colspan="2" align="right"> <div align="center"><span class="p9"><a href="#" onclick="javascript:window.history.go(-1);">==<strong><font color="#663300">返回目录</font></strong>==</a></span>
</div></td>
</tr>
</table>
</center>
</div>
<%
end if
set rs=nothing
conn.close
set conn=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -