主頁(yè) > 知識(shí)庫(kù) > ASP下批量刪除數(shù)據(jù)的兩種方法

ASP下批量刪除數(shù)據(jù)的兩種方法

熱門(mén)標(biāo)簽:世界地圖標(biāo)注了哪些城市 java外呼系統(tǒng)是什么 創(chuàng)意電話機(jī)器人 武穴地圖標(biāo)注 石家莊慧營(yíng)銷(xiāo)外呼系統(tǒng) 外呼線路批發(fā) 地圖標(biāo)注陽(yáng)江 濟(jì)源電銷(xiāo)外呼系統(tǒng)線路 梧州市地圖標(biāo)注
方法一:
復(fù)制代碼 代碼如下:

id=request.form("checkbox")
id=Split(id,",")
shu=0
for i=0 to UBound(id)
sql="select * from jiang_fname where id="id(i)
set rs=conn.execute(sql)
if not rs.eof then
delete_file(rs("fname"))
end if
rs.close
set rs=nothing
sql="delete from jiang_fname where id="id(i)
conn.execute sql,shu1
shu=shu+1
next

if shu>0 then
response.Write("script>alert('刪除成功');location.href='"url"';/script>")
else
response.write("Script>alert('刪除失敗');javascript: history.back();/script>")
end if
conn.close
set conn=nothing



方法二:巧用in關(guān)鍵字實(shí)現(xiàn)數(shù)據(jù)的批量刪除
managenews.asp
復(fù)制代碼 代碼如下:

!--#include file="conn.asp"-->
%'數(shù)據(jù)庫(kù)的連接文件我就不多說(shuō)了%> html>
head>
title>管理新聞/title>
meta http-equiv="Content-Type" content="text/html; charset=gb2312">
link rel="stylesheet" href="../index/style.css" type="text/css">
script>
function del () //用于判斷記錄有沒(méi)有選中的函數(shù)
{
var flag=true;
var temp="";
var tmp;
if((document.form1.answer.length+"")=="undefined") {tmp=1}else{tmp=document.form1.answer.length}
if (tmp==1){
if (document.form1.answer.checked){
flag=false;
temp=document.form1.answer.value
}
}else{
for (i=0;idocument.form1.answer.length;i++) {
if (document.form1.answer[i].checked){
if (temp==""){
flag=false;
temp=document.form1.answer[i].value
}else{
flag=false;
temp = temp +","+ document.form1.answer[i].value
}
}
}
}
if (flag){ alert("對(duì)不起,你還沒(méi)有選擇!")}
else{ name=document.form1.name.value
//alert(name)
if (confirm("確實(shí)要?jiǎng)h除?")){
window.location="delnews.asp?id=" + temp;
}
}
return !flag;
}
/script>
/head>
body>
script language=Javascript>
function checkall(all)//用于判斷全選記錄的函數(shù)
{
var a = document.getElementsByName("answer");
for (var i=0; ia.length; i++) a[i].checked = all.checked;
}
/script>
%
set rs=server.createobject("adodb.recordset")
sql="select * from news order by addtime desc"
rs.open sql,conn,1,3 %>
% if rs.eof then %>
table width="50%" border="0" align="center" ID="Table2">
tr>
td align="center">
沒(méi)有新聞!
/tr>
/table>
% else %>
form method="POST" id=form1 name=form1>
table width="90%" border="0" align="center" class="tabDocborder" ID="Table3">
tr>
td>
table width="80%" align="center" id=TabDocMain border='1' cellspacing='0' cellpadding='0' bordercolorlight='#82b4dd' bordercolor='#b6d3eb'     class="TabDocMain">
thead>
tr>
td colspan="7" align="center">
新聞管理中心
/td>
/tr>
/thead>
tbody>
tr>
td align=center>
刪除框
/td>
td align=center>
新聞標(biāo)題
/td>
td align=center>
發(fā)布時(shí)間
/td>
td align=center>
管理
/td>
/tr>
%
do while not rs.eof
%>

  tr>
td align=center>input type="checkbox" name="answer" value="%=rs("id")%>" ID="Checkbox1">
/td>
td align=left>%If Len(rs("title"))=30 Then%>%=rs("title")%>%else%>
%=(Left(rs("title"),30))%>...
%end if %>/td>
td align=left>%=rs("addtime")%>/td>
td align=center>a href="editnews.asp?id=%=rs("id")%>">編 輯/a>/td>
/tr>
/tbody>
%
rs.movenext
loop
%>

  tr>
td colspan="7" align="center">
input type="checkbox" name="chkall" value="on" onclick="checkall(this)" ID="Checkbox2">選中所有的顯示新聞   
input type="button" name="btnDelete" value="刪除" style='font-family: 宋體; font-size: 9pt;' onclick="del()" ID="Button1">
/td>
/tr>
/table>
/form>
/td>
/tr>
%end if%>
/table>
% set rs=nothing
conn.close
set conn=nothing
%>
/body>
/html>

delnews.asp文件
復(fù)制代碼 代碼如下:

!--#include file="conn.asp"-->
%
arrdel=Request("id")
'Response.Write arrdel
sql="delete from news where id in ("arrdel")"
'Response.Write sql
conn.Execute sql
set conn=nothing
response.write"SCRIPT language=JavaScript>alert('刪除成功!');"
response.write"javascript: history.go(-1)/SCRIPT>"
response.end
%>

標(biāo)簽:迪慶 唐山 來(lái)賓 滁州 甘南 淮北 揭陽(yáng) 南寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP下批量刪除數(shù)據(jù)的兩種方法》,本文關(guān)鍵詞  ASP,下,批量,刪除,數(shù)據(jù),的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP下批量刪除數(shù)據(jù)的兩種方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于ASP下批量刪除數(shù)據(jù)的兩種方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章