网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

ASP.NET页面优化:性能提升8倍的方法

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/01/05
我测试执行10000次时,耗时:00:00:07.5607229

498)this.width=498;'' onmousewheel = ''javascript:return big(this)'' border="0" alt="" width="31" height="11" src="http://images.myeducs.cn/files/uploadimg/20120312/144143347.gif" />

测试用例2:InlinePage.aspx

与测试用例1不同,测试用例2则完全不使用服务器控件。

页面代码:

  1. <%@ Page Language="C#" %> 
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml"> 
  4. <head> 
  5.     <title>PagePerformanceTest   http://www.cnblogs.com/fish-li/</title> 
  6. </head> 
  7. <body> 
  8.  
  9. <p>This is InlinePage.aspx</p> 
  10.  
  11. <% foreach( BlogInfo b in XmlDb.Blogs ) { %> 
  12.     <a href="<%= b.Href %>" target="_blank"><%= b.Title %></a><br /> 
  13. <% } %> 
  14. <hr /> 
  15.  
  16. <% foreach( BlogInfo b in XmlDb.Blogs ) { %> 
  17.     <a href="<%= b.Href %>" target="_blank"><%= b.Title %></a><br /> 
  18. <% } %> 
  19. <hr /> 
  20.  
  21. <% foreach( BlogInfo b in XmlDb.Blogs ) { %> 
  22.     <a href="<%= b.Href %>" target="_blank"><%= b.Title %></a><br /> 
  23. <% } %> 
  24. <hr /> 
  25.  
  26. <% foreach( BlogInfo b in XmlDb.Blogs ) { %> 
  27.     <a href="<%= b.Href %>" target="_blank"><%= b.Title %></a><br /> 
  28. <% } %> 
  29. <hr /> 
  30.  
  31. <% foreach( BlogInfo b in XmlDb.Blogs ) { %> 
  32.     <a href="<%= b.Href %>" target="_blank"><%= b.Title %></a><br /> 
  33. <% } %> 
  34. <hr /> 
  35.  
  36. </body> 
  37. </html> 

测试代码:

  1. [Action]  
  2. public object Test2(string callTimes)  
  3. {  
  4.     int count = 0;  
  5.     int.TryParse(callTimes, out count);  
  6.     if( count <= 0 )  
  7.         return count;  
  8.  
  9.     HttpContext context = HttpContext.Current;  
  10.  
  11.     // 先执行一次,排除编译时间  
  12.     string html = MyMVC.PageExecutor.Render(context, "/TestPage/InlinePage.aspx"null);  
  13.  
  14.     Stopwatch watch = Stopwatch.StartNew();  
  15.     forint i = 0; i < count; i++ )  
  16.         html = MyMVC.PageExecutor.Render(context, "/TestPage/InlinePage.aspx"null);  
  17.     watch.Stop();  
  18.  
  19.     return watch.Elapsed.ToString();  

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号