灵魂腐蚀 发表于 2015-1-16 23:22:17

ASP编程:制造我们本人的Ebay(拍卖体系EN) - The...

在实现ERP等高端的ASP应用时,用户需要提供核心的经营资料,需要ASP商有很高的信用度。楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。Basedontheinformationintheprevioussection,wehaveagoodunderstandingofwhatourdatabaseschemashouldlooklike.Thefollowingtableslistourdatabasestructure:


tblAuctionstblAuctionItems
AIDUniqueIDtokeeptrackofrecordsAutonumberIIDUniqueIDtokeeptrackofrecordsAutonumber
StartDateDatetheauctionstartedDate/TimeAIDWhichauctiondoesthisitembelongto?(ForeignkeytoAuctionstable)Integer
EndDateDatetheauctionistoendDate/TimeNameNameoftheitembeingsoldText
SellerIDTheIDoftheseller.(Foreignkeytousertable)IntegerDescriptionDescriptionoftheitembeingsoldText
MinPriceMinimumpricetosell(specifiedbytheseller)Money
tblAuctionBidsIncrementValuetoincrementproxybidsby(specifiedbytheseller)Money
BIDUniqueIDtokeeptrackofrecordsAutonumberAvailableNumberofitemsavailabletosellInteger
IIDUniqueIDtokeeptrackofitems(foreignkeytoAuctionItemtable)Integer
UIDUniqueIDtokeeptrackofbidders(foreignkeytoAuctionUserstable)IntegertblAuctionUsers
WinPriceCurrentpriceforauser(calculatedbyapplication)MoneyUIDUniqueIDtokeeptrackofrecordsAutonumber
MaxBidMaximumpriceforauserMoneyNameNameofuserText
BidItemsThenumberofitemsthisuserbidforInteger
WinItemsThenumberofitemsthisuserwouldwiniftheauctionendedimmediatelyInteger
TimeThelasttimethisbidwasupdatedDate/Time

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


NOTE:Youcanuseapre-existingusertableifyouwish.WesimplyprovidethetblAuctionUserstabledefinitionforcompletenesssake.
</p>强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。

若天明 发表于 2015-1-17 21:04:15

我想问如何掌握学习节奏(先学什么再学什么)最好详细点?

仓酷云 发表于 2015-1-21 07:46:55

Application:这个存储服务端的数据,如果不清除,会直到web应用程序结束才清除(例如重启站点)

冷月葬花魂 发表于 2015-1-24 19:15:26

Application:这个存储服务端的数据,如果不清除,会直到web应用程序结束才清除(例如重启站点)

精灵巫婆 发表于 2015-1-26 22:56:12

运用经典的例子。并且自己可以用他来实现一些简单的系统。如果可以对他进行进一步的修改,找出你觉得可以提高性能的地方,加上自己的设计,那就更上一个层次了,也就会真正地感到有所收获。

分手快乐 发表于 2015-2-2 10:48:30

下面简单介绍一下我学习ASP的方法,希望对想学习ASP的朋友有所帮助...

老尸 发表于 2015-2-7 18:01:13

另外因为asp需要使用组件,所以了解一点组件的知识(ADODB也是组件)

小魔女 发表于 2015-2-22 20:10:59

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

再现理想 发表于 2015-3-7 01:38:26

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

飘灵儿 发表于 2015-3-14 03:49:45

我认为比较好的方法是找一些比较经典的例子,每个例子比较集中一种编程思想而设计的。

灵魂腐蚀 发表于 2015-3-21 00:13:14

Response:从字面上讲是“响应”,因此这个是服务端向客户端发送东西的,例如Response.Write
页: [1]
查看完整版本: ASP编程:制造我们本人的Ebay(拍卖体系EN) - The...