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

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

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