38 lines
845 B
Plaintext
38 lines
845 B
Plaintext
<!--#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)
|
|
|
|
|
|
%> |