Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
List_Del.asp
Package: NetPhone.rar [view]
Upload User: xxtaishan
Upload Date: 2022-01-02
Package Size: 4063k
Code Size: 1k
Category:
VOIP program
Development Platform:
ASP/ASPX
- <!--#include file="../../inc/conn.asp"-->
- <!--#include file="../../inc/FUNC.asp"-->
- <%
- If Request("operation")="del" Then
- Del
- end if
- Function Del
- Dim query
- query=Request("checkbox")
- If query<>"" Then
- If instr(query,",")>0 Then
- Dim chx
- Dim i
- chx=Split(query,",")
- For i=0 to ubound(chx)
- call DelInfo(chx(i))
- Next
- Else
- call DelInfo(query)
- End If
- Else
- call showerr("请选择删除记录!")
- End IF
- End Function
- '-------------------------------
- Function DelInfo(x)
- Dim rs
- Dim sql
- set rs=conn.execute("select * from info where id="&x)
- dim fileurl
- fileurl=rs("pic")
- if fileurl<>"" then
- call DoDelFile("../../UPLOAD/"&fileurl)
- end if
- sql="delete from info where id="&x
- Set rs=Conn.Execute(sql)
- call showmsg("记录删除成功!","List.asp")
- End Function
- '-------------------------------
- call COCLS
- %>