📄 showusersetup.asp
字号:
<!--#include file="passinc.asp" -->
<%
dim ei
set ei = server.createobject("easymail.UserMessages")
'-----------------------------------------
ei.Load Session("wem")
%>
<HTML>
<HEAD>
<title>Corp.Email</title>
<LINK href="images\hwem.css" rel=stylesheet>
</HEAD>
<SCRIPT LANGUAGE=javascript>
<!--
function gosub()
{
if (f1.text.value.length > 4090)
f1.text.value = f1.text.value.substring(0, 4090);
f1.submit();
}
//-->
</SCRIPT>
<BODY>
<br>
<br>
<FORM ACTION="saveusersetup.asp" METHOD="POST" NAME="f1">
<table width="95%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
<tr bgcolor="#dbeaf5" style='border:1px #8CA5B5 solid;font-size: 9pt;'>
<td width="62%" colspan="3" height="28" nowrap style="border-left:1px #8CA5B5 solid; border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
<input type="checkbox" name="checkauto" <%
if ei.UseAutoReply = true then
response.write "checked"
end if
%>>
Enable Auto-Response</td>
</tr>
<tr bgcolor="#dbeaf5" style='border:1px #8CA5B5 solid;font-size: 9pt;'>
<td width="33%" height="28" nowrap style="border-left:1px #8CA5B5 solid; border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
<input type="checkbox" name="checkautoforward" <%
if ei.UseAutoForward = true then
response.write "checked"
end if
%>>
Enable Auto-Forwarding</td>
<td width="27%" nowrap style="border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
<input type="checkbox" name="checklocalsave" <%
if ei.LocalSave = true then
response.write "checked"
end if
%>>
Keep a local copy</td>
<td width="40%" nowrap style="border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
Forward to: <input type="text" name="AutoForwardTo" size="20" maxlength="64" value="<%=ei.AutoForwardTo %>" class="textbox">
</td>
</tr>
</table>
<br><br>
<table width="95%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
<tr bgcolor="#dbeaf5" style='border:1px #8CA5B5 solid;font-size: 9pt;'>
<td colspan="2" height="30" style="border-left:1px #8CA5B5 solid; border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
<div align="center"><font class="s" color="#104A7B"><b>Auto-Responses</b></font></div>
</td>
</tr>
<tr>
<td width="15%" height="28">
<div align="right"><font class="s" color="#104A7B"><b>Subject : </b></font></div>
</td>
<td>
<input name="subject" type="text" size="60" value="<%=ei.AutoReplySubject %>" class="textbox">
</td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<textarea name="text" cols="68" rows="8" class="textbox"><%=ei.AutoReplyText %></textarea>
</div><br>
</td>
</tr>
<tr>
<td colspan="2" align="right" bgcolor="#ffffff">
<br>
<input type="button" value=" Save " LANGUAGE=javascript onclick="gosub()" class="Bsbttn">
<input type="button" value="Cancel" onclick="javascript:location.href='viewmailbox.asp?<%=getGRSN() %>';" class="Bsbttn">
</td>
</tr>
</table>
</FORM>
<br>
<div style="position: absolute; left: 20; top: 10;">
<a href="help.asp#showusersetup" target="_blank"><img src="images/help.gif" border="0" alt="Help"></a></div>
</BODY>
</HTML>
<%
set ei = nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -