summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-11-15 15:30:38 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-11-15 15:30:38 -0800
commit588bc035f93607b4179df9f7f42175c08e6cf7b5 (patch)
tree965802693892616db01cf6997f060dda44518697 /projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
parent888abd61a54576ff244533693df77f174f03c2bb (diff)
parent2ff3e125a7db35ce459b89add580aedf7d2bd7d4 (diff)
downloadDotNetOpenAuth-588bc035f93607b4179df9f7f42175c08e6cf7b5.zip
DotNetOpenAuth-588bc035f93607b4179df9f7f42175c08e6cf7b5.tar.gz
DotNetOpenAuth-588bc035f93607b4179df9f7f42175c08e6cf7b5.tar.bz2
Merged working branch that splits the RP project template into two projects: a web project and a class library.
Merge branch 'projecttemplateLib'
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs')
-rw-r--r--projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs b/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
index cc9abf1..261ddea 100644
--- a/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
+++ b/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
@@ -14,10 +14,11 @@ namespace WebFormsRelyingParty.Admin {
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
+ using RelyingPartyLogic;
public partial class Default : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
- this.usersRepeater.DataSource = Global.DataContext.User.Include("AuthenticationTokens");
+ this.usersRepeater.DataSource = Database.DataContext.User.Include("AuthenticationTokens");
this.usersRepeater.DataBind();
}
}