최초등록

This commit is contained in:
sp1000je
2026-02-23 10:01:00 +09:00
commit 7bc9767bf4
3120 changed files with 198447 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<!--#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)
%>