English 中文(简体)
衡量网页(C#)的取时[闭门]
原标题:Measuring Loading time of a web page (C#) [closed]

我们不准许对书籍、工具、软件图书馆以及更多的图书馆征求建议的问题。 你可以ed问这个问题,以便用事实和引言回答。

Closed 8 years ago.

我愿知道,是否有一个简单的衡量方法,从你进入时到网页充分展示/上载的时间。 我是否需要为此利用一个时间,或是否在我所忽略的网上浏览器控制(或网络框架)中建立了现有特征?

谢谢。

最佳回答

如果你控制了伙伴关系。 互联网网页,可上追查。 你们将获得关于生命周期(包括时间邮票)和其他有用的定性信息。

页: 1 页: 1

<%@ Page Trace="true" %>

或动态地体现在法典中:

Trace.IsEnabled = true;

或者在全球范围,在网上确定这一点。

<configuration>
 <system.web>
  <trace enabled="true" requestLimit="40" localOnly="false"/>
 </system.web>
</configuration>

另见MSDN文件

问题回答

Firebug(Exension for >)在“Net”表下设有一个时间小组。

Fiddler可检查所有网络要求并显示相关时间。

Dynatrace是衡量客户业绩问题的有力工具。

与<代码>Fiddler/code>合并,使您能够从最初的<代码>HTTP申请到<代码>上填写为止。 该系统还包含一些汽车诊断,向用户介绍任何<条码>光线/星号<>。 载于<代码>超文本/Javascript。

如果我发现情况较好,那么只要我必须调查业绩问题,这项申请就成为我的标准工具的一部分。

简单地看着:

Timing a page Load C#

基本上,你只是把开始的“Load”页和最后的页数记录下来,并且用一些简单的数学来弥补差异,你有时间负担。

你们可以利用一些区域论坛工具衡量负荷时间。 这种方法是准确的,因为它使用浏览器上的航道,时间是从用户的角度来衡量的。 http://newrelic.com。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签