최초등록
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
%>
|
||||
Reference in New Issue
Block a user