<오류수정>
1. PMS NO : NULL 2. (주요)작업내용 (1) Base/Controller/BaseController.cs - 로그아웃시 쿠키 정리
This commit is contained in:
parent
3ac1e1e7da
commit
84a5465248
|
|
@ -335,9 +335,13 @@ namespace NP.Base
|
|||
{
|
||||
Response.Cookies[SUIFCROOM].Value = null;
|
||||
}
|
||||
if (Request.Cookies[SUIFTCROOM] != null)
|
||||
{
|
||||
Response.Cookies[SUIFTCROOM].Value = null;
|
||||
}
|
||||
Response.Cookies[suiv].Expires = DateTime.Now.AddDays(-1);
|
||||
Response.Cookies[suitv].Expires = DateTime.Now.AddDays(-1);
|
||||
Response.Cookies[SUIFCROOM].Expires = DateTime.Now.AddDays(-1);
|
||||
Response.Cookies[SUIFTCROOM].Expires = DateTime.Now.AddDays(-1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue