📄 infoback.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="Cookies.asp"-->
<html>
<style type="text/css">
<!--
.style1 {
font-size: 36px;
color: #0000FF;
}
.style2 {
color: #CC0000;
font-family: "华文行楷";
font-weight: bold;
font-size: 40px;
}
.style3 {
color: #CC3333;
font-size: 18px;
}
.style4 {color: #990033}
-->
</style>
<body>
<%
username=request.QueryString("username")
set user=server.CreateObject("adodb.recordset")
str="select email From user where username='"& username &"'"
user.open str,conn,1,1
%>
<div align="center" class="style1 style2">信息 回 复
</div>
<form name="form1" method="post" action="backcheck.asp">
<div align="center">
<table width="63%" height="285" border="1" bordercolor="#3300CC" bgcolor="#99CC33">
<tr>
<th width="22%" height="54" scope="col"><span class="style4">回复人姓名</span></th>
<td width="78%" scope="col"><%=username%>
</td>
</tr>
<tr>
<th scope="row"><span class="style4">回复人E-mail</span></th>
<td><%=user(0)%></td>
</tr>
<tr>
<th height="167" scope="row"><span class="style3">回复内容</span></th>
<td><textarea name="textarea" cols="50" rows="10"></textarea></td>
</tr>
</table>
<div align="center"> <table width="200" border=" ">
<tr>
<th scope="row"><input name="Input2" type="submit" value="提交"></th>
<td><div align="center">
<input name="Input" type="reset" value="重置">
</div></td>
</tr>
</table> </div>
</div>
<div align="center"> </div>
</form>
<div align="center">
<%
'conn.execute(str)
'closedb
'user.close
'set user=nothing
'response.write "<li>发送成功。"
'response.write "<meta http-equiv=refresh content=""1;URL=user_order.asp"">"
%>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -