|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp,jsp,php是web开发的三大技术,asp简单易用且有microsoft做靠山,jsp功能强大是因为有java支持,php则开源跨平台.在国内,asp应用范围最广,jsp发展势头最猛,php则处于劣势.这可能与公司的支持以及技术的培训有关.在ASP顶用EasyMailObject组件处置Exchange邮件源代码---读取邮件主题和巨细(maillist1.asp)
<%@LANGUAGE="VBSCRIPT"%>
<%
************************************************
这个文件列出一切邮件,并把邮件内容显现窗口置为空缺窗口
awayeah
邮箱:awayeah@163.net
************************************************
%>
<scriptlanguage=vbscript>
parent.frmbottom.location.href="blank.htm"
subcmdel_onClick()
删除邮件
frmail.submit
endsub
</script>
<%
ifsession("straccount")=""orsession("strpassword")=""then
Response.write("<html><title>毛病,还没有登录</title><body><palign=center><br><br>你还没有登录,请先加入登录!<br><br>")
Response.Write("<ahref=login.asptarget=_top><imgsrc=http://edu.cnzz.cn/NewsInfo/logout.jpgborder=0></a></p></body></html>")
Response.End
endif
%>
<html>
<head>
<title>收邮件</title>
</head>
<STYLE>
<!--
A{text-decoration:none}
-->
</STYLE>
<bodybgcolor="#008080"text="#000000">
<%
界说邮件服务器地点
strserver=session("strserver")
界说帐号
strAccount=session("straccount")
界说暗码
strPassword=session("strpassword")
设置组件的各类属性
SetPOP3=CreateObject("EasyMail.POP3.5")
POP3.LicenseKey="awa/S19I500R1AX30C0R3100"
POP3.MailServer=strServer
POP3.Account=strAccount
POP3.Password=strPassword
pop3.PreferredBodyFormat=1
pop3.TimeOut=120
x=POP3.Connect
Ifx0Then
Response.Write"<palign=center>毗连毛病:"+CStr(x)+"<br><br>请和办理员接洽"
POP3.Disconnect
Response.End
EndIf
x=POP3.DownloadMessages(0)
Ifx0Then
Response.Write"下载毛病:"+CStr(x)+"<br><br>请和办理员接洽"
POP3.Disconnect
Response.End
EndIf%>
<p><br></p>
<formname="frmail"action="mail_prc.asp"method="POST">
<center>
<tableborder="1"width="580"cellspacing="0"cellpadding="0"bordercolor="#000080"bgcolor="#FFFFFF">
<tr><tdcolspan=6align="center">
<%
分页处置
ifRequest.QueryString("currentpage")=""then
cp=1
else
cp=Request.QueryString("currentpage")
endif
失掉邮件总数
m_count=POP3.Messages.Count
ifm_count<=10then
pagenum=1
sd=1
ed=m_count
else
pagenum=int(m_count/10)+1
ifclng(cp)pagenumthen
lastpage=m_countmod10
sd=(clng(cp)-1)*10+1
ed=clng(cp)*10
else
sd=(clng(cp)-1)*10+1
ed=m_count
endif
endif
%>
你有<fontcolor="ff00ff"><%=POP3.Messages.Count%></font>封邮件。</td>
<%session("msgcount")=POP3.Messages.Count%>
</tr>
<tr>
<tdalign="center"width="20">号</td>
<tdalign="center"width="120">来自/复兴</td>
<tdalign="center"width="270">主题</td>
<tdalign="center"width="90">日期</td>
<tdalign="center"width="60">巨细</td>
<tdalign="center"width="20">选择</td>
</tr>
<%fori=sdtoed%>
<tr>
<tdalign="center"width="20"><%=i%></td>
<%
fw="复兴:"+replace(POP3.messages.item(i).subject,space(1),"_")
%>
<tdwidth="100">
<%receiver=POP3.Messages.item(i).from%>
<%ifPOP3.Messages.item(i).fromaddr=""then%>
<ahref="">
<%else
%>
<ahref=#onClick=javascript:window.open(sendmail1.asp?addr=<%=pop3.messages.item(i).fromaddr%>&subject=<%=fw%>,sendnew,width=600,height=480,scrollbars=yes);>
<%endif%>
<%iftrim(receiver)=""then
response.write"匿名</a>"%>
<%else%>
<ahref=#onClick=javascript:window.open(sendmail1.asp?addr=<%=pop3.messages.item(i).fromaddr%>&subject=<%=fw%>,sendnew,width=600,height=480,scrollbars=yes);>
<fontface="宋体"size="2">
<%=POP3.Messages.item(i).From%></font>
<%endif%>
</td>
<tdwidth="270">
<%msgid=POP3.GetMessageID(i)%>
<ahref="showbody1.asp?id=<%=msgid%>"target="frmbottom">
<fontface="宋体"size="2">
<%
iftrim(POP3.messages.item(i).Subject)=""then
response.write"无主题"
else
response.writePOP3.messages.item(i).Subject
endif
%></font>
</a></td>
<tdwidth="90"><fontface="宋体"size="2"><%=cdate(mid(cstr(POP3.messages.item(i).date),6,11))%></font></td>
<tdwidth="60"><fontface="宋体"size="2"><%=POP3.messages.item(i).size%></font></td>
<td><inputtype="checkbox"name="c<%=i%>"value="<%=i%>"></td>
</tr>
<%next
POP3.Disconnect
%>
</table>
</center>
<palign="center"><inputtype="button"name="cmdel"value="删除"></p>
</form>
<divalign="center">
<tableborder="1"cellspacing="0"cellpadding="0"bordercolor="#ff0080"bgcolor="#FFFFFF">
<tr><td>页数</td>
<%fori=1topagenum%>
<td><ahref="maillist1.asp?currentpage=<%=i%>"target=frmtop><%=i%></a></td>
<%next%>
</tr></table></div>
</body>
</html>
ASP最大的缺点在于网络的安全性和可靠性,企业将经营数据放在开放的平台上,最大的担忧就是如何保证这些数据不被其他人破坏。 |
|