diff options
-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 |