summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs
blob: 85f760840294a5e673405e44512971e9afe62c69 (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="Andrew Arnott">
//     Copyright (c) Andrew Arnott. 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) {
		}
	}
}