diff options
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Site.Master.cs')
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Site.Master.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Site.Master.cs b/projecttemplates/WebFormsRelyingParty/Site.Master.cs new file mode 100644 index 0000000..b6a4f1d --- /dev/null +++ b/projecttemplates/WebFormsRelyingParty/Site.Master.cs @@ -0,0 +1,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) { + } + } +} |