21 lines
661 B
Plaintext
21 lines
661 B
Plaintext
<!--#include virtual="/common/lib/dbcon.asp"-->
|
|
<!-- #Include virtual = "/common/lib/func.asp" -->
|
|
<%
|
|
member_login_chk("/index.asp")
|
|
|
|
prepage = request.form("prepage")
|
|
|
|
if request.form("bdm_idx") = "" or Isnull(request.form("bdm_idx")) then
|
|
call Back_back2("리스트를 선택해주세요.", request.servervariables("http_referer"))
|
|
end If
|
|
|
|
cart_num = Request.Form("bdm_idx").count
|
|
for j = 1 to cart_num
|
|
num = inputValue( Request.Form("bdm_idx")(j) )
|
|
Dbcon.execute "delete from bd_address where bdm_idx=" & num
|
|
Dbcon.execute "delete from bd_address_page where bdm_idx=" & num
|
|
next
|
|
|
|
Call Back_back2("주소록 그룹이 삭제되었습니다.", prepage)
|
|
|
|
%> |