<오류수정>

1. PMS NO : NULL
2. (주요)작업내용 
(1) Base/Controller/BaseController.cs
 -  로그아웃시 쿠키 정리
This commit is contained in:
kdh0120 2021-04-27 07:49:39 +00:00
parent 3ac1e1e7da
commit 84a5465248
1 changed files with 5 additions and 1 deletions

View File

@ -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
{