summaryrefslogtreecommitdiffstats
path: root/samples/ServiceProvider/TracePage.aspx.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-10-06 08:04:30 -0700
committerAndrew <andrewarnott@gmail.com>2008-10-06 08:04:30 -0700
commitf367f68a81e06dcab56348c85f7c09526123c916 (patch)
treec06ead228b7eb588ab783025ed05f816f5af5ee4 /samples/ServiceProvider/TracePage.aspx.cs
parent5e8d26c757a32e3c0237b447d142a3de071fa992 (diff)
downloadDotNetOpenAuth-f367f68a81e06dcab56348c85f7c09526123c916.zip
DotNetOpenAuth-f367f68a81e06dcab56348c85f7c09526123c916.tar.gz
DotNetOpenAuth-f367f68a81e06dcab56348c85f7c09526123c916.tar.bz2
WCF OAuth sample now has 'real' database and login.
Diffstat (limited to 'samples/ServiceProvider/TracePage.aspx.cs')
-rw-r--r--samples/ServiceProvider/TracePage.aspx.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/ServiceProvider/TracePage.aspx.cs b/samples/ServiceProvider/TracePage.aspx.cs
index 47e217b..d1b0231 100644
--- a/samples/ServiceProvider/TracePage.aspx.cs
+++ b/samples/ServiceProvider/TracePage.aspx.cs
@@ -9,11 +9,11 @@ using System.Web.UI.WebControls;
/// </summary>
public partial class TracePage : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
- placeHolder1.Controls.Add(new Label { Text = Logging.LogMessages.ToString() });
+ placeHolder1.Controls.Add(new Label { Text = Global.LogMessages.ToString() });
}
protected void clearLogButton_Click(object sender, EventArgs e) {
- Logging.LogMessages.Length = 0;
+ Global.LogMessages.Length = 0;
// clear the page immediately, and allow for F5 without a Postback warning.
Response.Redirect(Request.Url.AbsoluteUri);