How can I use miniprofiler in asp.net web site(NOT FOR MVC)?
There are many resources for MVC but I can not find anything for web site.
Thanks to Alex. Now it works for asp.net web site. But I can not understand what it displays. I have not written any code in method. See the image below.
Code is as below for which I ran profiler.
protected void Page_Load(object sender, EventArgs e)
{
using (MiniProfiler.Current.Step("test"))
{
Page.Title = "12345";
}
}