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
paihang2.jsp
Package: jspgouwushop.rar [view]
Upload User: szlmxq
Upload Date: 2014-01-31
Package Size: 740k
Code Size: 1k
Category:
Applet
Development Platform:
Java
- <%@ page contentType="text/html;charset=GBK" language="java" import="java.sql.*" errorPage="" %>
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <%
- sql="select top 11 * from hw order by hw_buys DESC";
- rs=mdb.executeQuery(sql);
- if(!rs.next())
- {
- out.print("本站目前没有成交任何商品");
- }else
- {
- rs.previous();
- i=0;
- int hw_id,daili;
- String hw_name;
- while(rs.next()&i<=10){
- hw_id=rs.getInt("hw_id");
- hw_name=rs.getString("hw_name");
- daili=rs.getInt("daili");
- %>
- <tr>
- <td width="70%" height="22" bgcolor="#F5EFE7">
- <a href="views.jsp?hw_id=<%=hw_id%>"><%=hw_name%></a></td>
- <td width="30%" bgcolor="#F5EFE7"><%=daili%></td>
- </tr>
- <%
- i=i+1;
- }
- }
- %> </table>