页面输出太多会严重影响web程序的性能
2008-02-23 09:42:11来源:互联网 阅读 ()
我有这样一个小程序:asp sqlserver2000。
数据量增加的很快,最近发现它的性能非常差,每次打开都需要十几秒,甚至几十秒,因为我
的程序分页用的是我自己的分页程序:
难道这个分页程序有问题,但是其他地方用到它没有感觉到慢呀,我没事就琢磨他,到网上查资料,结果没有具体查到说到我的那个分页程序性能差的相关资料,后来我发现我的程序中的页导航用的是数字导航方法,而且所有的页导航的数字全都输出来了,一共一千多页,能不能使这个地方慢呢?我决定测试一下,所以,我就只让他输出前200页的导航链接,结果1秒钟就刷出来了。这我才恍然大悟,原来是输出内容太多导致的。以前遇到性能问题都会去想数据库操作,从来没有想到其他地方会不会有问题,或很少想其他地方。其实页面输出的数据量对性能也是有很大影响的,所以我们一定要养成良好的程序书写习惯,力求简单。
后来我对程序进行了优化,优化分两个步骤,第一个步骤我不将所有的导航都输出来,只输出前200多页,后面再加一个文本框用于导航。
同时我对每个链接进行了简化,原来每个上面都有很长的链接,至此我将链接放到了javascript函数中,然后再导航数字上只加上一个onclick事件。这样又可以减少很多输出数据。结果性能非常好。
原来的代码片断:
<font color="#008080" size="2">当前<font color=ff0000><%=tCurPage%></font>页 共<font color=ff0000>
<%=tpagecount%></font>页
<br><% if tTotalCount>0 then
for i=1 to tPagecount
%><a href='<%=request.servervariables("Path_Info")%>
?page=<%=i%>&browserSize=<%=browserSize%>
&t_count=<%=tTotalCount%>&order_field=<%=tOrderField%>
&order_dir=<%=tOrderDirection%>&oType=<%=oType%>
&oOP=<%=oOP%>&oKey=<%=FilterParam4(oKey)%>
&page_size=<%=tPageSize%><%=add_Option%>'><%=i%></a>
<% if browserSize=1 then
if i=20 or i=36 then response.write " "
end if
if i=fCou then
exit for
end if
response.write ""
next %>
<%dim allStr
if tpagecount>fCou then
for i=fCou 1 to tpagecount
if browserSize=0 then
m=(i=74 or i=107 or (i>107 and ((i-107) mod 27)=0))
else
m=(i=94 or i=130 or (i>130 and ((i-130) mod 35)=0))
end if
allStr=allStr & "<a href='"&request.servervariables("Path_Info")&"?
page="&i&"&browserSize="&browserSize&"&t_count=" & tTotalCount &
"&order_field=" & tOrderField & "&order_dir=" & tOrderDirection & "&
oType=" & oType & "&oOP=" & oOP & "&oKey=" & FilterParam4
(oKey) & "&page_size=" & tPageSize & add_Option &
"'>"
allStr=allStr & i
allStr=allStr & "</a>"
if not m then allStr=allStr & " "
if m then allStr=allStr & "<br>"
if browserSize=1 then
if i=58 or i=71 then allStr=allStr & " "
end if
if i=106 then allStr=allStr & " "
next%>
<script language=javascript>
var allStr;
allStr="<%=allStr%>";
</script><a href="#" title="显示更多…" id=seemore
onclick="var t=document.all.morePage;var
s=document.all.seemore;if (t.innerHTML=='')
{t.innerHTML=allStr;s.innerHTML='<font color=ff0000>∧
</font>';s.title='多余隐藏'};else {t.innerHTML='';s.innerHTML=
'<font color=ff0000>∨</font>';s.title='显示更多…'}">
<font color=ff0000>∨</font></a><span id=morePage></span>
<%end if %>
<% end if %> </font>
更改后的代码片断:
function mP(curPage)
{
try{
if(!curPage)return false;
var patInt=/^\d $/;
if(!patInt.test(curPage)) return false;
if(parseInt(curPage)<=0) return false;
self.location='<%=request.servervariables("Path_Info")%>?
page=' curPage '&browserSize=<%=browserSize%>
&t_count=<%=tTotalCount%>&order_field=<%=tOrderField%>
&order_dir=<%=tOrderDirection%>&oType=<%=oType%>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:用ASP木马实现FTP和解压缩
下一篇:HTTP 1.1状态代码及其含义
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash