private void Page_Load(object sender, System.EventArgs e) { ProcessInfo pi = ProcessModelInfo.GetCurrentProcessInfo(); Label1.Text = "<b>ProcessID:</b> " + pi.ProcessID.ToString(); Label2.Text = "<b>PeakMemoryUsed:</b> " + pi.PeakMemoryUsed.ToString(); Label3.Text = "<b>StartTime:</b> " + pi.StartTime.ToString(); Label4.Text = "<b>Age:</b> " + pi.Age.ToString(); Label5.Text = "<b>ShutdownReason:</b> " + pi.ShutdownReason.ToString(); Label6.Text = "<b>Status:</b> " + pi.Status.ToString(); Label7.Text = "<b>RequestCount:</b> " + pi.RequestCount.ToString(); }