업무 시스템 로그오프 로직 구현하기
public string LogoffService()
{
AuthCheck authCheck = new AuthCheck(Request, Response);
authCheck.Logoff();
// TODO 이 웹 응용 프로그램 고유의 로그오프 처리를 수행한다.
return "Logoff";
}Last updated
Was this helpful?
public string LogoffService()
{
AuthCheck authCheck = new AuthCheck(Request, Response);
authCheck.Logoff();
// TODO 이 웹 응용 프로그램 고유의 로그오프 처리를 수행한다.
return "Logoff";
}Last updated
Was this helpful?
Was this helpful?