我有一个部分视图,我使用jQuery对话框进行渲染。 我想以分钟,秒和毫秒检查部分视图渲染时间。 请帮助我任何一个如何检查渲染时间。
答案 0 :(得分:1)
@{
var stopwatch = Stopwatch.StartNew();
Trace.WriteLine("View Index - rendering...");
}
<!-- standard view rendering goes here(in your case partial view content) -->
@{
stopwatch.Stop();
Trace.WriteLine(string.Format("View Index - rendered: {0} ms", stopwatch.ElapsedMilliseconds));
}