📄 feedbackshow.asp
字号:
<!--#include file="check_login.asp"-->
<!--#include file="conn.asp"-->
<%
idd=trim(request.QueryString("id"))
Set rs=Server.CreateObject("Adodb.Recordset")
sql="select * from Feedback where id="&idd&""
rs.open sql,conn,1,3
if rs.eof then
response.write "该信息发生异常错误,请退出"
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="text.css" rel="stylesheet" type="text/css">
<title></title>
</head>
<body <%=kkk%>>
<table width="96%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#EFEBEF">
<tr align="center" bgcolor="#B9BBB9">
<td height="30" colspan="2" ><strong>访 客 反 馈 信 息</strong></td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE" style='BORDER-TOP: #333333 1px solid'>主题:</td>
<td width="76%" bgcolor="#EBEBEB" style='BORDER-TOP: #333333 1px solid'> <%=rs("title")%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">留言内容: </td>
<td bgcolor="#EBEBEB"> <%=rs("comtont")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">留言者:</td>
<td bgcolor="#EBEBEB"> <%=rs("linkman")%> </td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">单位名称:</td>
<td bgcolor="#EBEBEB"> <%=rs("company")%></td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">地址:</td>
<td bgcolor="#EBEBEB"> <%=rs("address")%> </td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">电话:</td>
<td bgcolor="#EBEBEB"> <%=rs("tel")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">手机:</td>
<td bgcolor="#EBEBEB"> <%=rs("mobiletel")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">传真:</td>
<td bgcolor="#EBEBEB"> <%=rs("fax")%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">邮编:</td>
<td bgcolor="#EBEBEB"> <%=rs("code")%> </td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">电子邮件:</td>
<td bgcolor="#EBEBEB"> <%=rs("email")%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">留言时间:</td>
<td bgcolor="#EBEBEB"> <%=addtime%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">是否前台显示:</td>
<td bgcolor="#EBEBEB"> <% if rs("outpub")=true then
response.Write "√"
else
response.Write "×"
end if
%></td>
</tr>
<tr>
<td width="24%" align="right" bgcolor="#DEDFDE">回复时间:</td>
<td bgcolor="#EBEBEB"> <%=retime%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">回复内容:</td>
<td bgcolor="#EBEBEB"> <%=re%></td>
</tr>
<tr>
<td align="right" bgcolor="#DEDFDE">悄悄话:</td>
<td bgcolor="#EBEBEB"> <% if rs("ss")=true then
response.Write "√"
else
response.Write "×"
end if
%></td>
</tr>
<tr align="center" bgcolor="#DEDFDE">
<td height="50" colspan="2" style='BORDER-BOTTOM: #333333 1px solid'><input type="button" value=" 打印 " onclick="javascript:window.print();">
<input type="button" value="关闭窗口" onclick="javascript:window.close();">
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -