summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs')
-rw-r--r--projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs b/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
index 9e45e45..cc9abf1 100644
--- a/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
+++ b/projecttemplates/WebFormsRelyingParty/Admin/Default.aspx.cs
@@ -17,8 +17,8 @@ namespace WebFormsRelyingParty.Admin {
public partial class Default : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
- usersRepeater.DataSource = Global.DataContext.User.Include("AuthenticationTokens");
- usersRepeater.DataBind();
+ this.usersRepeater.DataSource = Global.DataContext.User.Include("AuthenticationTokens");
+ this.usersRepeater.DataBind();
}
}
}