blob: 261ddea1e222e292b1737ba0c1bb8b9d333b40b6 (
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
25
|
//-----------------------------------------------------------------------
// <copyright file="Default.aspx.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace WebFormsRelyingParty.Admin {
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
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 = Database.DataContext.User.Include("AuthenticationTokens");
this.usersRepeater.DataBind();
}
}
}
|