summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs
blob: 2b6d33cdd871f20e5e711e1c6c5f852adf7f6033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//-----------------------------------------------------------------------
// <copyright file="Admin.Master.cs" company="Outercurve Foundation">
//     Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace WebFormsRelyingParty.Admin {
	using System;
	using System.Collections.Generic;
	using System.Linq;
	using System.Web;
	using System.Web.UI;
	using System.Web.UI.WebControls;

	public partial class Admin : System.Web.UI.MasterPage {
		protected void Page_Load(object sender, EventArgs e) {
		}
	}
}