📄 style.asp
字号:
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<select name="ShowLanguage" class="drpdwn">
<%
i = ei.ShowLanguage
if i = 0 then
response.write "<option value='0' selected>Simplified Chinese</option>"
else
response.write "<option value='0'>Simplified Chinese</option>"
end if
if i = 1 then
response.write "<option value='1' selected>English</option>"
else
response.write "<option value='1'>English</option>"
end if
%>
</select>
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Set icon style for the left frame: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<select name="ShowIcon" class="drpdwn">
<%
i = ei.ShowIcon
if i = 0 then
response.write "<option value='0' selected>Standard Style Icons</option>"
else
response.write "<option value='0'>Standard Style Icons</option>"
end if
if i = 1 then
response.write "<option value='1' selected>3D Style Icons</option>"
else
response.write "<option value='1'>3D Style Icons</option>"
end if
%>
</select>
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Reply to: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="ReMail" class='textbox' value="<%=ei.ReMail %>" maxlength="256">
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Save a copy of sent messages in sent folder: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="enableBackupMail" value="checkbox" <% if ei.enableBackupMail = true then response.write "checked"%>>
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Default signature: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<select name="defaultSign" class="drpdwn">
<%
ds = ei.defaultSign
if ds = -1 then
%>
<option value="-1" selected>Do Not Use</option>
<%
else
%>
<option value="-1">Do Not Use</option>
<%
end if
dim sm
set sm = server.createobject("easymail.SignManager")
sm.Load Session("wem")
allnum = sm.count
i = 0
do while i < allnum
sm.get i, s_title, s_text
if i <> ds then
response.write "<option value='" & i & "'>" & server.htmlencode(s_title) & "</option>"
else
response.write "<option value='" & i & "' selected>" & server.htmlencode(s_title) & "</option>"
end if
s_title = NULL
s_text = NULL
i = i + 1
loop
set sm = nothing
%>
</select>
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Allow automatic recycle bin purging: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="enableAutoClear" value="checkbox" <% if ei.useAutoClearTrashBox = true then response.write "checked"%>>
Enable auto purging</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>How many days may the mails stay in the recycle bin before deleted: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="autoClearDays" class='textbox' value="<%=ei.autoClearTrashBoxDays %>" size="4" maxlength="4">
Day</td>
</tr>
<tr>
<td valign=center width="50%" bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Maximum mail display per page: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type=radio <% if ei.pageLines = 10 then response.write "checked"%> value=10
name=maxlist>
10 <br>
<input type=radio <% if ei.pageLines = 20 then response.write "checked"%> value=20 name=maxlist>
20 <br>
<input type=radio <% if ei.pageLines = 50 then response.write "checked"%> value=50 name=maxlist>
50 <br>
<input type=radio <% if ei.pageLines = 9999 then response.write "checked"%> value=9999 name=maxlist>
Unlimited</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Append original mail in reply: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type=radio <% if ei.orMailForReply = true then response.write "checked"%> value=1 name=addo>
Yes<br>
<input type=radio <% if ei.orMailForReply = false then response.write "checked"%> value=0 name=addo>
No</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Respond to additional information: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type=radio <% if ei.addInSubjectForReply = 0 then response.write "checked"%> value=0 name=replyf>
><br>
<input type=radio <% if ei.addInSubjectForReply = 1 then response.write "checked"%> value=1 name=replyf>
Re:<br>
<input type=radio <% if ei.addInSubjectForReply = 2 then response.write "checked"%> value=2 name=replyf>
Reply:</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Operation after mail deletion: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type=radio <% if ei.delProc = 0 then response.write "checked"%> value="0" name="delproc">
Jump to folder<br>
<input type=radio <% if ei.delProc = 1 then response.write "checked"%> value="1" name="delproc">
Jump to next mail<br>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Choose a language: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<select name="charSet" class="drpdwn">
<option value="gb2312">Chinese(GB2312)</option>
<option value="big5">Chinese(BIG5)</option>
<option value="iso-8859-1">English(ISO-8859-1)</option>
<option value="euc-jp">Japanese(EUC-JP)</option>
<option value="shift-jis">Japanese(SHIFT-JIS)</option>
<option value="iso-2022-jp">Japanese(ISO-2022-JP)</option>
<option value="euc-kr">Korea(EUC-KR)</option>
<option value="iso-2022-kr">Korea(ISO-2022-KR)</option>
<option value="chn-utf-8">Unicode(UTF-8)</option>
<option value="gb2312_iso-2022-cn">Chinese(ISO-2022-CN)</option>
</select>
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Expand folder at default: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="expandFolder" value="checkbox" <% if ei.expandFolder = true then response.write "checked"%>> Expand
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Expand shared folder at default: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="expandShareFolder" value="checkbox" <% if ei.expandShareFolder = true then response.write "checked"%>> Expand
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div>Expand public folder at default: </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="checkbox" name="expandPublicFolder" value="checkbox" <% if ei.expandPublicFolder = true then response.write "checked"%>> Expand
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div><b>Account protection question</b> <br>(eg. my favorite hero as a child is): </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="QuestionInfo" class='textbox' value="<%=ei.QuestionInfo %>" maxlength="256">
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div><b>Answer for account protection question</b> <br>(eg. my father): </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="AnswerInfo" class='textbox' value="<%=ei.AnswerInfo %>" maxlength="256">
</td>
</tr>
<tr>
<td valign=center bgcolor="#dbeaf5" style='border-bottom:1px #8CA5B5 solid;'
height=30>
<div><b>Hint for account protection question</b> <br>(eg. a family member): </div>
</td>
<td align=left style='border-bottom:1px #8CA5B5 solid;'>
<input type="text" name="HintInfo" class='textbox' value="<%=ei.HintInfo %>" maxlength="256">
</td>
</tr>
<tr>
<td valign=center bgcolor=#ffffff
height=40 colspan="2"><br>
<div align="right">
<input type="button" value=" Save " onclick="javascript:gosub()" class="Bsbttn">
<input type="button" value="Cancel" onclick="javascript:location.href='viewmailbox.asp?<%=getGRSN() %>';" class="Bsbttn">
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</Form>
<br>
<div style="position: absolute; left: 20; top: 12;">
<a href="help.asp#style" 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 + -