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
Deal_msg.asp
Package: pinke2010.rar [view]
Upload User: pengwei803
Upload Date: 2021-02-10
Package Size: 3311k
Code Size: 1k
Category:
WEB(ASP,PHP,...)
Development Platform:
HTML/CSS
- <!--#include file="../Ku_inc/Ku_sql.asp"-->
- <!--#include file="../Ku_inc/Ku_config.asp"-->
- <!--#include file="Ku_conn.asp"-->
- <!--#include file="../Ku_inc/inc.asp"-->
- <!-- #include file="Session.asp"-->
- <%
- if request("action")="del" then
- if Trim(Request("ID"))="" then
- FoundErr=True
- Message=Message & "<li>请您选择要删除的信息!</li>"
- else
- call Del()
- end if
- if FoundErr<>True then
- Sub Del()
- '删除信息
- sql = "delete from ku_msg where ID in ("& Trim(Request("ID")) &")"
- conn.execute (sql)
- End Sub
- '成功提示
- call performMsgmsg("操作成功!","")
- end if
- if FoundErr=True then
- call ErrMsg(Message)
- end if
- end if
- %>
- <%
- if request("action")="huifu" then
- if Trim(Request("ID"))="" then
- FoundErr=True
- Message=Message & "<li>请您选择要操作的信息!</li>"
- else
- call strPeak()
- end if
- if FoundErr<>True then
- Sub strPeak()
- adoSQL="update ku_msg set huifu=1 where ID=" & Trim(Request("ID")) & ""
- conn.execute(adoSQL)
- End Sub
- '成功提示
- call performMsgmsg("操作成功!","")
- end if
- if FoundErr=True then
- call ErrMsg(Message)
- end if
- end if
- %>