15 lines
526 B
Plaintext
15 lines
526 B
Plaintext
<!--#include virtual="/common/lib/dbcon.asp"-->
|
|
<!-- #Include virtual = "/common/lib/func.asp" -->
|
|
<%
|
|
if request.form("adr_idx") = "" or Isnull(request.form("adr_idx")) then
|
|
call Back_back2("리스트를 선택해주세요.", request.servervariables("http_referer"))
|
|
end If
|
|
|
|
cart_num = Request.Form("adr_idx").count
|
|
for j = 1 to cart_num
|
|
num = inputValue( Request.Form("adr_idx")(j) )
|
|
Dbcon.execute "delete from bd_address_page where adr_idx=" & num
|
|
next
|
|
|
|
Call loding(0,request.servervariables("http_referer"))
|
|
%> |