24 lines
608 B
Plaintext
24 lines
608 B
Plaintext
<!--#include virtual="/common/lib/dbcon.asp"-->
|
|
<!--#include virtual="/common/lib/func.asp"-->
|
|
<!--#include file="config.asp"-->
|
|
<%
|
|
Dim m_id, m_pwd
|
|
m_id = InputValue(request("m_id"))
|
|
m_pwd = InputValue(request("m_pwd"))
|
|
|
|
|
|
if memgr_idpwdchk( m_id, m_pwd) then
|
|
|
|
Call memgr_logincookie( m_id, m_pwd) '//인증쿠키발생
|
|
Call memgr_ad_cmscookie() '//관리자페이지쿠키발생
|
|
|
|
else
|
|
|
|
Call goMessage_board("정보가 정확하지 않거나 접속권한이 없습니다.", Request.ServerVariables("HTTP_REFERER"), "", "", a_num)
|
|
|
|
End if
|
|
|
|
ok_url = "list.asp?a_num=" & a_num
|
|
Call loding ("0", ok_url)
|
|
|
|
%> |