我如何使用asp.net网站miniprofiler(非MVC)? 有MVC的很多资源,但是我无法找到网站任何内容。
感谢亚历克斯。 现在,它的工作原理为asp.net网站。 但我不明白它的显示。 我没有写在方法的任何代码。 见下面的图片。
代码是下面,我跑了探查。
protected void Page_Load(object sender, EventArgs e)
{
using (MiniProfiler.Current.Step("test"))
{
Page.Title = "12345";
}
}
从miniprofiler.com :
PM>安装,包装MiniProfiler
在您global.asax
:
using StackExchange.Profiling;
...
protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
}
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
然后在某处你的母版页:
<%= StackExchange.Profiling.MiniProfiler.RenderIncludes() %>
这应该是足够的启动。