24 lines
700 B
Plaintext
24 lines
700 B
Plaintext
<!--#include virtual="/common/lib/dbcon.asp"-->
|
|
<!--#include virtual="/common/lib/func.asp"-->
|
|
<%
|
|
Dim table, d_ym
|
|
|
|
if request.form("msg_id") = "" or Isnull(request.form("msg_id")) then
|
|
call Back_back2("리스트를 선택해주세요.", request.servervariables("http_referer"))
|
|
end If
|
|
|
|
cart_num = Request.Form("msg_id").count
|
|
|
|
for j = 1 to cart_num
|
|
msg_id = Request.Form("msg_id")(j)
|
|
sql = "delete from SDK_MMS_SEND where msg_id = '" & msg_id & "'"
|
|
executeQuery( sql )
|
|
|
|
'발송건수 추가시키기(은영, 210726)
|
|
Dbcon.execute "update member set M_g_sms = M_g_sms + 3 where M_id = '" & SESSION("ss_m_id") & "' "
|
|
next
|
|
|
|
|
|
|
|
Call loding(0,request.servervariables("http_referer"))
|
|
%> |