制作我们自己的Ebay(拍卖系统)(9)

Chris Payne

September 11, 2000

Hopefully this article showed you that creating something as complex as an auction isn't impossible, but
just takes some forethought and imagination. You're probably not ready to take on Ebay yet, but if you
have need to set up something similar, you are now well-equipped to do so. There is also a lack of auction
applications out there in the market now, so this is a good place to get started.

And if you do end up creating the next Ebay and become zillionaires, remember where you read it first, and
send some $$ this way!

Happy scripting!

时间: 2024-10-04 09:50:42

制作我们自己的Ebay(拍卖系统)(9)的相关文章

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

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 ar

制作我们自己的Ebay(拍卖系统)(7)

Chris Payne September 11, 2000 Well, now your auction can run for an indefinite time. People can keep placing bids until you decide to stop them (good for the seller, but makes bidders kind of unhappy, to say the least). Let's discuss the mechanisms

制作我们自己的Ebay(拍卖系统EN) - 1

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 ar

制作我们自己的Ebay(拍卖系统)(2)

Chris Payne September 11, 2000 Before we go jumping into code and databases, let's take a moment and examine the needs and strategies, as well as the different types of auctions. First of all, there are many different types of auctions (which we'll d

制作我们自己的Ebay(拍卖系统)(3)

Based on the information in the previous section, we have a good understanding of what our database schema should look like. The following tables list our database structure: tblAuctionsAID:Unique ID to keep track of records AutonumberStartDate:Date

制作我们自己的Ebay(拍卖系统)(4)

First, we'll discuss the easy part. You'll have to create a few forms - one for the users to register (that is, get themselves into our AuctionUsers table), and one for sellers to post their info. These forms should be easy to create if you know how

制作我们自己的Ebay(拍卖系统)(5)

This is the complex part - you must make sure everyone's bids are correct, update those that have proxy bids, reallocate lots to winners, notify buyers who have been outbid, and perform some upkeep. First let's look at the code to add a bid. Function

制作我们自己的Ebay(拍卖系统)(6)

Resolving Bids - Page 6 Chris Payne September 11, 2000 Function ResolveBids(ItemID) 'Set variables and create objectsdim monIncrement, monHighPrice, intAvailable, intTotItems, flgQuitdim blnResolved 'Assume bids are resolvedblnResolved = TruestrConne

制作我们自己的Ebay(拍卖系统)(8)

Chris Payne September 11, 2000 So now you've got yourself a pretty functional auction. Let's talk a bit about what we haven't covered, and a few miscellaneous things. Things to Add While this auction will work, it lacks a few features of finer produc