2011-07-12 6 views
53

FormsAuthentication Cookie名を変更できますか?FormsAuthentication Cookie名を変更できますか?

「はい」の場合、どうですか?

私は、2つのWebアプリケーションが同じドメインに配置されている場合、誰かがログインしたときに、同じ認証のCookie名を使用するため、自動的にログアウトされるという問題があります。

+1

重複質問:この時点で疑問に思っている人のためにhttp://stackoverflow.com/questions/3631617/how-do-i-customize-the-forms-authentication-cookie-name – DaveRead

答えて

78

あなたのweb.configファイルでそれを調整することができます。

<authentication mode="Forms"> 
    <forms name=".CookieName" loginUrl="LoginPage.aspx" /> 
</authentication> 
+25

、デフォルトクッキー名は ".ASPXAUTH" –

12

をはいあなたはauthentication要素の下forms要素にweb.configにクッキー名を指定することができます。

<authentication mode="Forms"> 
    <forms name="RoleBasedAuthenticationCookiename" loginUrl="~/Login.aspx" defaultUrl="~/Default.aspx"> 
    </forms> 
</authentication> 
関連する問題