diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-29 07:57:56 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-29 07:57:56 -0800 |
commit | bf56193167d8d41939abbcccec422d7d955b3ae1 (patch) | |
tree | a867851440e6575d6899ca5d3272d796ae14fbb6 | |
parent | 2d81a6d77bcdaba8e9a5d185d6d2ba8dee1e94c0 (diff) | |
download | DotNetOpenAuth-bf56193167d8d41939abbcccec422d7d955b3ae1.zip DotNetOpenAuth-bf56193167d8d41939abbcccec422d7d955b3ae1.tar.gz DotNetOpenAuth-bf56193167d8d41939abbcccec422d7d955b3ae1.tar.bz2 |
Gave each project template a unique forms auth cookie name.
-rw-r--r-- | projecttemplates/MvcRelyingParty/Web.config | 2 | ||||
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Web.config | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/projecttemplates/MvcRelyingParty/Web.config b/projecttemplates/MvcRelyingParty/Web.config index e4c2684..18fbaeb 100644 --- a/projecttemplates/MvcRelyingParty/Web.config +++ b/projecttemplates/MvcRelyingParty/Web.config @@ -173,7 +173,7 @@ ASP.NET to identify an incoming user. --> <authentication mode="Forms"> - <forms loginUrl="~/Account/LogOn" timeout="2880" /> + <forms loginUrl="~/Account/LogOn" timeout="2880" name="MvcRelyingParty" /> </authentication> <roleManager enabled="true" defaultProvider="Database"> diff --git a/projecttemplates/WebFormsRelyingParty/Web.config b/projecttemplates/WebFormsRelyingParty/Web.config index 1d7c29f..bdfc67a 100644 --- a/projecttemplates/WebFormsRelyingParty/Web.config +++ b/projecttemplates/WebFormsRelyingParty/Web.config @@ -166,7 +166,7 @@ ASP.NET to identify an incoming user. --> <authentication mode="Forms"> - <forms loginUrl="~/login.aspx" /> + <forms loginUrl="~/login.aspx" name="WebFormsRelyingParty" /> </authentication> <!-- The <customErrors> section enables configuration |