无法计算asp.net页面上的加载时间

时间:2012-02-14 23:35:02

标签: asp.net performance

我试图找到我的加载时间消耗的位置。我已经添加了对我能想到的几乎所有内容的跟踪,并且缺少了200ms(超过总负载的50%)

如何解释这段缺失时间

 Description                        Duration(ms) with Children(ms)  from start(ms)
  http://localhost:80/default.aspx   320.8        357.3              +0.0
  CreateControlCollection            0.0          0.0                +27.2
  OnPreInit                          0.1          0.1                +27.2
  GetVaryByCustomString              0.0          0.0                +227.0
  Control OnInit                     0.0          0.0                +232.4
  Control OnInit                     0.0          0.0                +232.4
  Control OnInit                     0.0          0.0                +234.2
  Control OnInit                     0.0          0.0                +234.2
  Control OnInit                     0.0          0.0                +234.2
  GetVaryByCustomString              0.0          0.0                +234.6
  Control OnInit                     0.0          0.0                +234.9
  Control OnInit                     0.0          0.0                +234.9
  GetVaryByCustomString              0.0          0.0                +235.0
  GetVaryByCustomString              0.0          0.0                +235.3

1 个答案:

答案 0 :(得分:2)

看起来在PreInit(仅限页面的事件)和Init用于控件之间消耗了未计入的时间。一些想法:

  1. 控制初始化可能是罪魁祸首。在控制初始化完成之后,而不是之前,控制Init事件被触发。
  2. 您使用的是ASP.NET主题还是皮肤?如果是这样,它们将在PreInit和Init之间应用。
  3. 请记住,Init事件是自下而上触发的;父母面前的孩子。
  4. 线程问题是造成时间差距的可能原因。你的测量是否来自一个空闲的系统?是否在页面生命周期的早期发生了任何I / O操作?
  5. 您使用母版页吗?如果是这样,请记住它们是作为页面的子控件实现的。