制作我们自己的Ebay(拍卖系统)(7)
敬业的IT人
互联网
佚名
2008-4-14 17:37:16
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 for stopping an auction.
There are two easy ways to do it. The first, and easiest to perform, though requiring more manual
intervention in the long run, is to simply build in an "Active" bit field into your tblAuctions table.
When you decide to stop the auction, flip the bit, and the auction is over. (You'll also have to add some
code to make sure that the DoBids and ResolveBids functions don't operate>
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 for stopping an auction.
There are two easy ways to do it. The first, and easiest to perform, though requiring more manual
intervention in the long run, is to simply build in an "Active" bit field into your tblAuctions table.
When you decide to stop the auction, flip the bit, and the auction is over. (You'll also have to add some
code to make sure that the DoBids and ResolveBids functions don't operate>
- 最新文章
- 制作我们自己的Ebay(拍卖系统)(6)[04-14]
- 制作我们自己的Ebay(拍卖系统)(5)[04-14]
- 制作我们自己的Ebay(拍卖系统)(4)[04-14]
- 制作我们自己的Ebay(拍卖系统)(3)[04-14]
- 用ASP创建日志文件(附源程序)[04-14]
- 在一个ASP页面停留的多少时间的程序[04-14]
- 相关文章
