IT Share you

FormsAuthentication 쿠키 이름을 변경할 수 있습니까?

shareyou 2020. 12. 4. 21:24
반응형

FormsAuthentication 쿠키 이름을 변경할 수 있습니까?


FormsAuthentication 쿠키 이름을 변경할 수 있습니까?

그렇다면 어떻게?

내가 가진 문제는 동일한 도메인에 두 개의 웹 응용 프로그램이 배포되어 있으면 누군가가 로그인하면 두 번째 웹 응용 프로그램이 동일한 인증의 쿠키 이름을 사용하기 때문에 자동으로 로그 아웃된다는 것입니다.


web.config 파일에서 조정할 수 있습니다.

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

web.config, forms요소 아래의 authentication요소 쿠키 이름을 지정할 수 있습니다 .

<authentication mode="Forms">
    <forms name="RoleBasedAuthenticationCookiename" loginUrl="~/Login.aspx" defaultUrl="~/Default.aspx">
    </forms>
</authentication>

참고 URL : https://stackoverflow.com/questions/6661943/can-i-change-the-formsauthentication-cookie-name

반응형