summaryrefslogtreecommitdiffstats
path: root/src/InfoCard/InfoCardRelyingParty/TracePage.aspx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/InfoCard/InfoCardRelyingParty/TracePage.aspx.cs')
-rw-r--r--src/InfoCard/InfoCardRelyingParty/TracePage.aspx.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/InfoCard/InfoCardRelyingParty/TracePage.aspx.cs b/src/InfoCard/InfoCardRelyingParty/TracePage.aspx.cs
new file mode 100644
index 0000000..31218b9
--- /dev/null
+++ b/src/InfoCard/InfoCardRelyingParty/TracePage.aspx.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+/// <summary>
+/// A page to display recent log messages.
+/// </summary>
+namespace InfoCardRelyingParty {
+ 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(Logging.LogMessages.ToString()) });
+ }
+
+ protected void clearLogButton_Click(object sender, EventArgs e) {
+ Logging.LogMessages.Length = 0;
+
+ // clear the page immediately, and allow for F5 without a Postback warning.
+ Response.Redirect(Request.Url.AbsoluteUri);
+ }
+ }
+}