📄 tous_list2.asp
字号:
<!--#include file="conn.asp"-->
<% set rs=server.createobject("adodb.recordset")
sql="select * from tousu where id="&request("id")
rs.open sql,conn,1,1
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#009AFF">
<tr>
<td width="126">投诉人姓名:</td>
<td width="628"><%=rs("user_name")%></td>
</tr>
<tr>
<td>投诉人e-mail:</td>
<td><%=rs("user_mail")%></td>
</tr>
<tr>
<td>投诉人电话:</td>
<td><%=rs("user_tel")%></td>
</tr>
<tr>
<td>投诉人QQ:</td>
<td><%=rs("user_qq")%></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
<p>投诉缘由:<%=rs("user_content")%></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -