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
show_comment.asp
Package: 图书管理系统.rar [view]
Upload User: llrg7406
Upload Date: 2007-03-02
Package Size: 654k
Code Size: 1k
Category:
Education soft system
Development Platform:
Delphi
- <%@ Language=VBScript %>
- <!--#include file ="identify.asp"-->
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <link rel="stylesheet" type="text/css" href="xcss.css">
- <meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
- </head>
- <body background="images/zapsmbknd.gif">
- <%
- set conn = server.CreateObject("adodb.connection")
- conn.Open application("dsn")
- commentid = Request.QueryString("commentid")
- sql = "select commentid,username,imgname,title,settime,detail from bookcomment where commentid=" & commentid
- set rs = server.CreateObject("adodb.recordset")
- rs.Open sql,conn
- if rs.EOF then
- rs.Close
- set rs = nothing
- conn.Close
- set conn = nothing
- Response.Write "您找的文件不存在!"
- Response.End
- end if
- while not rs.EOF
- %>
- <h3><img SRC="images/<%=rs("imgname")%>.gif" border="0"> <%=rs("title")%></h3><hr>
- <p><b>作者:</b><%=rs("username")%></p>
- <p><b>发表时间:</b><%=rs("settime")%></p>
- <p><b>评论全文</b></p>
- <pre> <%=rs("detail")%></pre>
- <%
- rs.MoveNext
- wend
- rs.Close
- set rs = nothing
- conn.Close
- set conn = nothing
- %>
- </table>
- </body>
- </html>