Development ASP.Net



ASP.NET Process Info



void Page_Load(object sender, EventArgs e)
{
  ProcessInfo[] history = ProcessModelInfo.GetHistory(10);
  for(int i = 0; i< history.Length; i++)
  {
     Response.Write ("");
     Response.Write ("ASP.NET Process Start Date and Time" + 
                     history[i].StartTime.ToString());
     Response.Write ("Process Age ( HH:MM:SS:LongDecimal )" + 
                     history[i].Age.ToString());
     Response.Write ("Process ID ( The same as in Task Manager )" + 
                     history[i].ProcessID.ToString());
     Response.Write ("Total Request Count (Requests served since the " + 
                    "process started)" + history[i].RequestCount.ToString());
     Response.Write ("Peak Memory Used ( KB ) " + 
                     history[i].PeakMemoryUsed.ToString());
     Response.Write ("");
  }
}