仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 506|回复: 8
打印 上一主题 下一主题

[学习教程] ASP教程之制造我们本人的Ebay(拍卖体系)(8)

[复制链接]
分手快乐 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:28:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
Access是一种桌面数据库,只适合数据量少的应用,在处理少量数据和单机访问的数据库时是很好的,效率也很高。但是它的同时访问客户端不能多于4个。access数据库有一定的极限,如果数据达到100M左右,很容易造成服务器iis假死,或者消耗掉服务器的内存导致服务器崩溃。ChrisPayne

September11,2000

Sonowyouvegotyourselfaprettyfunctionalauction.Letstalkabitaboutwhatwehaventcovered,
andafewmiscellaneousthings.

ThingstoAdd

Whilethisauctionwillwork,itlacksafewfeaturesoffinerproducts.Forinstance,youcouldhave
builtina"takeless"option-if,forexample,auserbidsfor10items,butiswillingtotakelessif
necessary,thenthiscouldbeaccommodated.Itwouldrequireaddingabooleanfieldtothedatabase,anda
fewmodificationstotheResolveBids()code.Youshouldalsogivethesellertheoptionto"nottake
less,"meaningthatifalltheitemshaventbeenbidfor,thenthewholethingisoff.

Anotheroptioncouldbeadding"deeperlots."Thisallowssellerstospecifythattheyhavemultiplelots
thattheymustselltogether-forinstance,5TVsand5VCRs.Thesecouldallgoinonelot,butby
separatingthemintomultiplelotsthataresoldtogether,youareofferingthesellerandbuyersan
advantage(bothpricewiseandcompetiveness-wise).

Mostauctionsalsoallow"reserveprices."Thisisapricethesellerspecifiesthatmustbemetbefore
anyitemscanbesold.Forexample,Iwanttosellacar,butIwonttakelessthan$5000.Thisisabit
differentthantheminimumacceptablebid,inthatthelatterissetlowtoencouragebuyerstoplace
bids,whiletheformerensuresIdontendupsellingmy$5000carfor$2-sellerprotection.

Afullyfunctionalauctionshouldalsohavemorerobustalertingmechanisms.Ihaventbuiltinherethe
abilitytonotifyuserswhentheyhavebeenoutbid.(Makesurethough,thatifyoudobuildthis
functionality,youdontsendanalerteverytimetheproxyengineplacesabid-theuserwouldget
floodedwithtonsofemailsthatarentnecessary.Rather,justsendanalertwhenthepriceforanitem
growslargerthanthemaximumbidthebuyerspecified,togivethemanotherchanceattheitem.)

Finally,youllneedmorefunctionalitythanjustthefunctionsIspecifiedhere.Youmightwanttocreate
anadmininterfacethatallowsanadminstratortoviewallbids,users,andauctions,deletespecified
items,modifythem,etc.Andyoullneedtobuildthevisualfrontend-somethingsothatbuyersand
sellerscanbidforandenteritemstosell,andviewthecurrentstatusofanauction(thecurrent
winningbid,thenumberofitemssold,etc).Youmayalsowishto"beefup"thetablesspecifiedhere,to
allowuserstoenterinmorespecificinformation(i.e.aSKUnumber,aURL,etc).

CodingPractices

YoumayhavenoticedIspecifiedtheconnectionstringandcreatedarecordsetobjectineveryfunction.
Whilethiswasdoneforclarityinthisarticle,amoreefficientmethodwouldbetospecifyaglobalor
sessionvariablesomewhereelse-forinstanceintheglobal.asafile,oranincludefilethatisincluded
oneverysinglepage.

Also,thistypeoffunctionalitywouldbestbewrappedupinaCOMobject.Thiswouldenhancespeedand
increasesecurity.DoallthetestingintheASPfirstthough!

当然了,现在国内CRM厂商的产品与其说是CRM,但从至少从我的角度分析上来看,充其量只是一个大型的进销存而已了,了解尚浅,不够胆详评,这里只提技术问题
海妖 该用户已被删除
沙发
发表于 2015-1-19 13:34:00 | 只看该作者
运用ASP可将VBscript、javascript等脚本语言嵌入到HTML中,便可快速完成网站的应用程序,无需编译,可在服务器端直接执行。容易编写,使用普通的文本编辑器编写,如记事本就可以完成。由脚本在服务器上而不是客户端运行,ASP所使用的脚本语言都在服务端上运行。
乐观 该用户已被删除
板凳
发表于 2015-1-27 18:50:32 | 只看该作者
运用ASP可将VBscript、javascript等脚本语言嵌入到HTML中,便可快速完成网站的应用程序,无需编译,可在服务器端直接执行。容易编写,使用普通的文本编辑器编写,如记事本就可以完成。由脚本在服务器上而不是客户端运行,ASP所使用的脚本语言都在服务端上运行。
变相怪杰 该用户已被删除
地板
发表于 2015-2-5 11:17:02 | 只看该作者
用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。
简单生活 该用户已被删除
5#
发表于 2015-2-11 12:31:11 | 只看该作者
最近在学asp,不要问我为什么不直接学.net,因为公司网站是asp做的所以有这个需要,卖了本书asp入门到精通,对里面的六大内置对象老是记不住,还有很多属性和方法看的头晕。
不帅 该用户已被删除
6#
发表于 2015-3-2 12:19:45 | 只看该作者
ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:
谁可相欹 该用户已被删除
7#
发表于 2015-3-11 03:46:17 | 只看该作者
下面简单介绍一下我学习ASP的方法,希望对想学习ASP的朋友有所帮助...
只想知道 该用户已被删除
8#
发表于 2015-3-17 20:10:26 | 只看该作者
ASP也是这几种脚本语言中最简单易学的开发语言。但ASP也是这几种语言中唯一的一个不能很好支持跨平台的语言。  因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。
兰色精灵 该用户已被删除
9#
发表于 2015-3-24 23:42:59 | 只看该作者
学习是为了用的,是为了让你的程序产生价值,把握住这个原则会比较轻松点。除此之外,课外时间一定要多参加一些社会实践活动,来锻炼自己的能力。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-23 21:21

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表