📄 returnmesg.asp
字号:
<%@ language="vbscript" %>
<% Response.Expires=0%>
<%
if request("sender")="" then
response.write"error"
response.end
else
session("username")=request("sender")
end if
if request("mailtitle")="" or request("content")="" or request("geter")="" then
response.write "fill all the space!"
response.end
end if
mailtitle=request("mailtitle")
content=request("content")
%>
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>回复邮件</title>
<link rel="stylesheet" href="club.css">
<style type="text/css">
<!--
.botton { font-size: 12px; line-height: 14px; color: #000000; background-color: #FFFFF8}
-->
</style>
</head>
<body bgcolor="#FFFFF0">
<form method="POST" action="sendmesg.asp">
<input type="hidden" name="sender" value="<%=session("username")%>">
<table
border="1" width="77%" bordercolorlight="#000000" cellspacing="0" cellpadding="2"
bordercolordark="#FFFFFF" bgcolor="#E0DEFE" align="center">
<tr>
<td colspan="2">〖回复邮件〗 </td>
</tr>
<tr>
<td colspan="2" height="1" bgcolor="006600"></td>
</tr>
<tr>
<td width="21%" height="9"> 〖收件人〗</td>
<td width="79%" height="9">
<input type="text" name="geter" size="20" value="<%=request("geter")%>" class="botton">
</td>
</tr>
<tr>
<td width="21%">
<p>〖主题〗
</td>
<td width="79%">
<input type="text" name="mailtitle" size="20" value="Re:<%=mailtitle%>" class="botton">
</td>
</tr>
<tr>
<td width="21%">
<p>〖内容〗
</td>
<td width="79%"> </td>
</tr>
<tr>
<td colspan="2">
<textarea rows="10" name="content" cols="61" class="botton">Dear <%=request("geter")%>:
------------------------------------------
<%=content%>
------------------------------------------</textarea>
</td>
</tr>
</table>
<div align="center"><center><p>
<input type="submit" value="发送"
name="B1" class="botton">
<input type="reset" value="重写" name="B2" class="botton">
</p>
</center></div>
</form>
<p align="center"><a href="inbox.asp">返回收件箱</a></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -