Files
sms_host20170829/content/member/login_ok.asp
T
2026-02-23 10:01:00 +09:00

26 lines
519 B
Plaintext

<!--#include virtual = "/common/lib/dbcon.asp" -->
<!--#include virtual = "/common/lib/func.asp" -->
<%
m_id = InputValue(request("m_id"))
m_pwd = InputValue(request("m_pwd"))
if memgr_idpwdchk3(m_id,m_pwd) then
Call memgr_logincookie(m_id,m_pwd) '인증쿠키발생
If session("ss_g_num") = "1" Then
memgr_ad_cmscookie()
End if
else
Call Back_back ("아이디 또는 비밀번호를 확인하세요.")
End if
If prepage = "" Then prepage = "/content/01message/01_01.asp"
Call loding ("0", prepage)
%>