diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-10 10:01:22 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-10 10:01:22 -0700 |
commit | 075bee88cbb51fc95fdfd27c7a1f8133d2d91890 (patch) | |
tree | bfedfb6d5838122cbc47ab9754d67571d19394ff /projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs | |
parent | ec06fe2e1a12cb8b7e993786e575266971ed3648 (diff) | |
download | DotNetOpenAuth-075bee88cbb51fc95fdfd27c7a1f8133d2d91890.zip DotNetOpenAuth-075bee88cbb51fc95fdfd27c7a1f8133d2d91890.tar.gz DotNetOpenAuth-075bee88cbb51fc95fdfd27c7a1f8133d2d91890.tar.bz2 |
Renamed "starterkits" to "projecttemplates".
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs')
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs b/projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs new file mode 100644 index 0000000..85f7608 --- /dev/null +++ b/projecttemplates/WebFormsRelyingParty/Admin/Admin.Master.cs @@ -0,0 +1,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) { + } + } +} |