网络硬盘数量显示不对的,只要在<a href="attfolders.asp?GRSN=2907417" style="text-decoration: none">网络硬盘</a> 之前插入
-
- <%
- all_mailnum = ei.inboxMailCount + ei.outboxMailCount + ei.sendboxMailCount + ei.delboxMailCount
- all_mailnewnum = ei.newInBoxMailCount + ei.newOutBoxMailCount + ei.newSendBoxMailCount + ei.newDelBoxMailCount
- all_mailsize = ei.inboxMailSize + ei.outboxMailSize + ei.sendboxMailSize + ei.delboxMailSize
- allnum = ei.PerFolderCount
- i = 0
- do while i < allnum
- ei.GetPerFolderInfo i, pfname, pfmailcount, pfsize, pfnewmailcount
- all_mailnum = all_mailnum + pfmailcount
- all_mailnewnum = all_mailnewnum + pfnewmailcount
- all_mailsize = all_mailsize + pfsize
- response.write "<tr><td width='15%' height='30' style='border-bottom:1px " & MY_COLOR_1 & " solid;'><div align='center'>"
- response.write "<a href='listmail.asp?mode=" & Server.URLEncode(pfname) & "&" & getGRSN() & "'>" & server.htmlencode(pfname) & "</a>"
- if Application("em_Enable_ShareFolder") = true then
- response.write " [<a href='pf_setupfolder.asp?foldername=" & Server.URLEncode(pfname) & "&" & getGRSN() & "'>设置</a>]"
- response.write " [<a href='ff_sharefolder.asp?foldername=" & Server.URLEncode(pfname) & "&" & getGRSN() & "'>共享设置</a>]</div>"
- end if
- response.write "</td><td style='border-bottom:1px " & MY_COLOR_1 & " solid;'><div align='right'>" & pfmailcount & "</div></td>"
- response.write "<td style='border-bottom:1px " & MY_COLOR_1 & " solid;'>"
- if pfnewmailcount = 0 then
- response.write "<div align='right'>" & pfnewmailcount & "</div>"
- else
- response.write "<div align='right'><font color='#FF3333' size='2'><b>" & pfnewmailcount & "</b></font></div>"
- end if
- response.write "</td><td style='border-bottom:1px " & MY_COLOR_1 & " solid;'>"
- response.write "<div align='right'>" & CLng(pfsize/1000) & "K</div></td></tr>"
- pfname = NULL
- pfmailcount = NULL
- pfsize = NULL
- pfnewmailcount = NULL
- i = i + 1
- loop
- %>
复制代码 |