⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 findpfmail.asp

📁 蓝芒3.0A最新所有功能完整破解版
💻 ASP
字号:
<!--#include file="passinc.asp" -->

<%
fileid = trim(request("fileid"))
%>

<HTML>
<HEAD>
<title>Corp.Email</title>
<LINK href="images\hwem.css" rel=stylesheet>
</HEAD>

<SCRIPT LANGUAGE=javascript>
<!--
function msearch() {
	f2.mailsearch.value = "\t\t" + f2.shead.value + "\t" + f2.smode.value + "\t" + f2.stext.value + "\t\tDate\t" + f2.sdatemode.value + "\t" + f2.syear.value + f2.smonth.value + f2.sday.value + "\t\tSize\t" + f2.ssizemode.value + "\t" + f2.ssize.value + "\t\tKey\t" + f2.skeytext.value + "\t\tHit\t" + f2.shit.value + "\t" + f2.shittext.value + "\t\t";
	f2.submit();
}
//-->
</SCRIPT>


<BODY>
<br><br>
<form name="f2" method="post" action="searchpf.asp?fileid=<%=fileid %>">
<input type="hidden" name="mailsearch">
  <table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
	<tr bgcolor="#dbeaf5">
      <td colspan="2" height="30" valign="middle" 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>Search</b></font></div>
      </td>
    </tr>
	<tr>
      <td width="20%" height="30" style="border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
        <div align="center">
        <select name="shead" class="drpdwn" size="1">
          <option value="Subject" selected>Subject</option>
          <option value="PostName">Poster</option>
        </select>:
        </div>
      </td>
      <td width="80%" style="border-bottom:1px #8CA5B5 solid;">
        <select name="smode" class="drpdwn" size="1">
          <option value="1" selected>contains</option>
          <option value="2">equal</option>
          <option value="3">equal (asterisk supported)</option>
        </select>
        <input type="text" name="stext" class='textbox'>
      </td>
    </tr>
    <tr>
      <td width="20%" height="30" style="border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
        <div align="center">Keyword:</div>
      </td>
      <td width="80%" style="border-bottom:1px #8CA5B5 solid;">
        <select name="skeymode" class="drpdwn" size="1">
          <option value="1" selected>contains</option>
        </select>
        <input type="text" name="skeytext" class='textbox'>
      </td>
    </tr>
    <tr>
      <td width="20%" height="30" style="border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
        <div align="center">Date:</div>
      </td>
      <td width="80%" style="border-bottom:1px #8CA5B5 solid;">Year:
        <select name="syear" class="drpdwn" size="1">
          <%
mc = 1990

do while mc <= Year(Now)

	if mc = Year(Now) then
		response.write "<option value='" & mc & "' selected>" & mc & "</option>"
	else
		response.write "<option value='" & mc & "'>" & mc & "</option>"
	end if

	mc = mc + 1
loop
%>
        </select>&nbsp;&nbsp;Month:
        <select name="smonth" class="drpdwn" size="1">
          <%
mc = 1

do while mc <= 12

	if mc < 10 then
		smc = "0" & CStr(mc)
	else
		smc = CStr(mc)
	end if

	if mc = Month(Now) then
		response.write "<option value='" & smc & "' selected>" & mc & "</option>"
	else
		response.write "<option value='" & smc & "'>" & mc & "</option>"
	end if

	mc = mc + 1
loop
%>
        </select>&nbsp;&nbsp;Day:
        <select name="sday" class="drpdwn" size="1">
          <%
mc = 1

do while mc <= 31

	if mc < 10 then
		smc = "0" & CStr(mc)
	else
		smc = CStr(mc)
	end if

	if mc = Day(Now) then
		response.write "<option value='" & smc & "' selected>" & mc & "</option>"
	else
		response.write "<option value='" & smc & "'>" & mc & "</option>"
	end if

	mc = mc + 1
loop
%>
        </select>&nbsp;&nbsp;
        <select name="sdatemode" class="drpdwn" size="1">
          <option value="1" selected>Dated Before</option>
          <option value="2">Dated After</option>
          <option value="3">Dated On</option>
        </select>
      </td>
    </tr>
    <tr>
      <td width="20%" height="30" style="border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
        <div align="center">Size:</div>
      </td>
      <td width="80%" style="border-bottom:1px #8CA5B5 solid;">
        <select name="ssizemode" class="drpdwn" size="1">
          <option value="1" selected>&nbsp;&gt;&nbsp;</option>
          <option value="2">&nbsp;&lt;&nbsp;</option>
          <option value="3">&nbsp;=&nbsp;</option>
        </select>
        <input type="text" name="ssize" class='textbox'>&nbsp;(Byte)
      </td>
    </tr>
    <tr>
      <td width="20%" height="30" style="border-right:1px #8CA5B5 solid; border-bottom:1px #8CA5B5 solid;">
        <div align="center">Times Viewed:</div>
      </td>
      <td width="80%" style="border-bottom:1px #8CA5B5 solid;">
        <select name="shit" class="drpdwn" size="1">
          <option value="1" selected>&nbsp;&gt;&nbsp;</option>
          <option value="2">&nbsp;&lt;&nbsp;</option>
          <option value="3">&nbsp;=&nbsp;</option>
        </select>
        <input type="text" name="shittext" maxlength="4" class='textbox'>
      </td>
    </tr>
    <tr valign="middle">
      <td colspan="2" height="40" bgcolor="#ffffff">
        <div align="center">
          <input type=button value="Find Messages" class="Bsbttn" onClick="javascript:msearch()">&nbsp;&nbsp;
          <input type="button" value=" Return " onclick="javascript:history.back();" class=Bsbttn>
		</div>
      </td>
    </tr>
  </table>
  </form><br><br>
  <div align="center">
    <table width="90%" border="0" align="center" cellspacing="0" bgcolor="#EFF7FF" style='border-top:1px #8CA5B5 solid;'>
      <tr>
        <td width="15%" valign="top" align="left"><br><font color="#FF3333">*Note: Size</font></td>
        <td width="85%"><br>Please input the length in bytes when searching mails by size (1k = 1000 bytes)<br><br>
        Besides, the kilobytes (K) displayed with the mail is rounded up to the nearest interger, eg. 2300 bytes = 2K, and 2600 bytes = 3K.<br><br>
        Mails smaller than 1000 bytes are displayed in bytes.<br><br>
        </td>
      </tr>
    </table>
  </div>
<br><br>
</BODY>
</HTML>


<%
set pf = nothing
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -