|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
实现规模效益。与传统的用户拥有硬件软件所有权和使用权以及传统的应用服务商提供一对一的服务模式不同,ASP拥有应用系统所有权,用户拥有使用权,应用系统集中放在ASP的数据中心中,集中管理,分散使用,以一对多的租赁的形式为众多用户提供有品质保证的应用技术服务,实现规模效益。变量Now,youmightbewondering,whatdoeshemean,Dontskimponthevariables?Well,oftentimesitismore
efficienttousevariablestostoreresultsfromADOqueriesorfromobjects,andthenreferencethe
variableasopposedtocontinuouslyreferencingtheobject.
Forexample,youcoulddothis:
IfRequest.QueryString("Name")="Frank"Then
...
EndIf
IfRequest.QueryString("Name")="Steve"Then
...
EndIf
Response.Write("Yournameis"&Request.QueryString("Name"))
EachtimeyouusetheRequestobject,ASPhastogoreadtheQueryStringvariablename.Youcanreduce
thistohavingtojustreadthisoncebydoingthefollowing:
DimstrName
strName=Request.QueryString("Name")
IfstrName="Frank"Then
...
EndIf
IfstrName="Steve"Then
...
EndIf
Response.Write("Yournameis"&strName)
Plus,Ipersonallythinktheabovescenarioiseasiertoread.Itseasier,Ithink,tomentallyassociate
strNametobetheusersnameasopposedtoassociatingRequest.QueryString("Name")astheusersname.
Justmytwocents,though!</p>国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了 |
|