当前位置: 首页 > 图文教程 > 网络编程 > ASP > 制作我们自己的Ebay(拍卖系统)(1)

ASP
Asp+Sql 对数据库的各种操作
ASP:6行代码实现无组件上传
ASP中几种分页显示的比较
ASP中数据库调用中常见错误的现象和解决
ASP实用技巧:强制刷新和判断文件地址
asp全站防止注入的代码
ASP如何获取客户端真实IP地址
ASP实现可显示和隐藏的树型菜单
如何用ASP获取真实IP地址
ASP与SQL数据库连接代码
拒绝攻击 万能Asp防注入代码
草根站长成长计划:跟我学新云采集入门(2)
ASP技巧:提高使用Request集合的效率
Asp用存储过程实现数据分页
做网页时常用的ASP函数
Asp编码优化技巧八则
ASP中Cache技术的应用
用ASP封IP的方法,防止固定IP垃圾留言
ASP实现一行多列显示方法实例程序
ASP实现动态添加表单内容的实例程序

ASP 中的 制作我们自己的Ebay(拍卖系统)(1)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 27 ::
收藏到网摘: n/a

  Chris Payne

September 11, 2000

Everyone knows Ebay is raking in the big bucks. Peer to peer networking is where it's at, and auctions can
make some serious money. While finding items to sell and attracting people to your auction is up to you,
this article will show you how to build an auction that actually works.  



Introduction
Online auctions are marvelous things; bringing people together from all over the world, to sell things
amongst themselves, and take a cut off the top. Everyone has something that someone else wants, so this
idea is golden - and we all know how well Ebay is doing.

So now you want to build an auction, but don't know where to start? There is a lot of thought and
engineering that goes into such a development, so you'll need to start out on the right foot. We'll show
you the underlying database structures and how to make things work for a peer to peer auction.

This article will assume you have a good understanding of Active Server Pages and VBScript, and database
methods.



Contents:
How do I start?
The Auction Database
The Logic
Managing Bids
Resolving Bids
Determining A Winner
Considerations
Conclusions