blob: 4841c89a5c72766b91f93420a34f30b8bc50cea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
namespace OAuthResourceServer {
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Code;
/// <summary>
/// A page to display recent log messages.
/// </summary>
public partial class TracePage : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
this.placeHolder1.Controls.Add(new Label { Text = HttpUtility.HtmlEncode(Global.LogMessages.ToString()) });
}
protected void clearLogButton_Click(object sender, EventArgs e) {
Global.LogMessages.Length = 0;
// clear the page immediately, and allow for F5 without a Postback warning.
Response.Redirect(Request.Url.AbsoluteUri);
}
}
}
|