최초등록

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
+38
View File
@@ -0,0 +1,38 @@
<!--#include virtual = "/common/lib/dbcon.asp" -->
<!--#include virtual = "/common/lib/func.asp" -->
<!--#include file = "config.asp" -->
<%
' 파라미터정보 *************************************************************************************
m_num = InputValue(request("m_num"))
status = InputValue(request("status"))
' **************************************************************************************************
If status = "totdel" then ' 다중삭제
chk = InputValue(Replace(request("chk")," ",""))
arr_chk = Split(chk,",")
For i=0 To UBound(arr_chk)
sql = " delete from member where m_num = "&arr_chk(i)
Dbcon.execute sql
Next
else ' 일반삭제
sql = " delete from member where m_num = "&m_num
Dbcon.execute sql
End If
'ViewCreateMember();
ok_url = "list.asp?"&page_info
Call loding ("0", ok_url)
%>