再见西城 发表于 2015-1-16 22:28:00

ASP编程:制造我们本人的Ebay(拍卖体系)(3)

使用cdonts,可以发送、查看邮件,实现webmail的功能。结合wsh,可以实现对nt主机的管理,如nt用户管理、iis虚拟主机设置、exchange邮箱设置等等,就像管理本地机一样方便。Basedontheinformationintheprevioussection,wehaveagoodunderstandingofwhatourdatabaseschemashouldlooklike.Thefollowingtableslistourdatabasestructure:

tblAuctions
AID:UniqueIDtokeeptrackofrecordsAutonumber
StartDate:DatetheauctionstartedDate/Time
EndDate:DatetheauctionistoendDate/Time
SellerID:TheIDoftheseller.(Foreignkeytousertable)Integer

tblAuctionItems
IID:UniqueIDtokeeptrackofrecordsAutonumber
AID:Whichauctiondoesthisitembelongto?(ForeignkeytoAuctionstable)Integer
Name:NameoftheitembeingsoldText
Description:DescriptionoftheitembeingsoldText
MinPrice:Minimumpricetosell(specifiedbytheseller)Money
Increment:Valuetoincrementproxybidsby(specifiedbytheseller)Money
Available:NumberofitemsavailabletosellInteger

tblAuctionBids
BID:UniqueIDtokeeptrackofrecordsAutonumber
IID:UniqueIDtokeeptrackofitems(foreignkeytoAuctionItemtable)Integer
UID:UniqueIDtokeeptrackofbidders(foreignkeytoAuctionUserstable)Integer
WinPrice:Currentpriceforauser(calculatedbyapplication)Money
MaxBid:MaximumpriceforauserMoney
BidItems:ThenumberofitemsthisuserbidforInteger
WinItems:ThenumberofitemsthisuserwouldwiniftheauctionendedimmediatelyInteger
Time:ThelasttimethisbidwasupdatedDate/Time

tblAuctionUsers
UID:UniqueIDtokeeptrackofrecordsAutonumber
Name:NameofuserText

Notethattheabovetablesaresimplyusedforexample.Youmaydecidetostoremoreinformationforyourpurposes(i.e.,youmaystoremorethanjustanameintheusertable).Already,however,theschemaisgettingkindofcomplex-eachtablehasforeignkeystooneormoreothertables.


NOTE:Youcanuseapre-existingusertableifyouwish.WesimplyprovidethetblAuctionUserstabledefinitionforcompletenesssake.

缺乏可以共同遵循的行业标准,ASP还处在发展初期,大家对它的理解不同,如产品和服务标准,收费标准等,不利于行业的健康发展。

乐观 发表于 2015-1-19 13:33:47

Session:这个存储跟客户端会话过程的数据,默认20分钟失效

冷月葬花魂 发表于 2015-1-28 06:36:16

代码逻辑混乱,难于管理:由于ASP是脚本语言混合html编程,所以你很难看清代码的逻辑关系,并且随着程序的复杂性增加,使得代码的管理十分困难,甚至超出一个程序员所能达到的管理能力,从而造成出错或这样那样的问题。

透明 发表于 2015-2-5 18:19:09

那么,ASP.Net有哪些改进呢?

仓酷云 发表于 2015-2-13 05:49:00

封装性使得代码逻辑清晰,易于管理,并且应用到ASP.Net上就可以使业务逻辑和Html页面分离,这样无论页面原型如何改变,业务逻辑代码都不必做任何改动;继承性和多态性使得代码的可重用性大大提高。

第二个灵魂 发表于 2015-3-3 15:54:40

兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的

灵魂腐蚀 发表于 2015-3-11 11:59:16

以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。

小魔女 发表于 2015-3-18 10:35:09

封装性使得代码逻辑清晰,易于管理,并且应用到ASP.Net上就可以使业务逻辑和Html页面分离,这样无论页面原型如何改变,业务逻辑代码都不必做任何改动;继承性和多态性使得代码的可重用性大大提高。

简单生活 发表于 2015-3-25 17:35:59

虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。
页: [1]
查看完整版本: ASP编程:制造我们本人的Ebay(拍卖体系)(3)