仓酷云

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

[学习教程] ASP教程之在ASP中不缓存页面

[复制链接]
再现理想 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:48:02 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
实现规模效益。与传统的用户拥有硬件软件所有权和使用权以及传统的应用服务商提供一对一的服务模式不同,ASP拥有应用系统所有权,用户拥有使用权,应用系统集中放在ASP的数据中心中,集中管理,分散使用,以一对多的租赁的形式为众多用户提供有品质保证的应用技术服务,实现规模效益。缓存|页面|缓存Update1/8/2004
Atthetopofthepage:

<%
pStr="private,no-cache,must-revalidate"
Response.ExpiresAbsolute=#2000-01-01#
Response.AddHeader"pragma","no-cache"
Response.AddHeader"cache-control",pStr
%>

--------------------------------------------------------------------------------

Dontallowyourpagetobecached.Why?Youmightwanttopreventusersfromseeingoldcontent.Insertthefollowingcodeinthe<HEAD>tagofyourdocument.

<metahttp-equiv="Expires"content="Tue,04-Dec-199321:29:02GMT">

CacheNoMore(ASP)
byPhilPaxton
(Phil@matchw.com)

HerearethethingsdealingwiththeissueofcachinginASP:

1.Response.Expires=0
2.Response.ExpiresAbsolute=Now()-1
3.Response.AddHeader"cache-control","private"
4.Response.AddHeader"pragma","no-cache"
5.Addinga"cachebuster"bycreatingauniqueURL.

Notes:
#1issaidtoexpireat60seconds,not0.Also,KhinZaw(fromActiveServerPages@andASPAdvanced@)haspostedresearchfromtimespentwithsomeIISinternalsexpertsrevealingthiscanbeaverytouchyparametertorelyuponandusuallyrequiresarather"large"negativenumberorpedantically,thatwouldbeaverysmallnumber).

#2(myowncreation)says"expirethispage24hoursago",allowingfortimedifferences,ratherthanspecifyastaticdate.

#3,#4fromanMSKBarticle.Thecodeiscorrectbuttherearesomeincorrectstatementsinthearticleitself.

n.b.somerelatedKBarticlesinclude:
(INFO:ControllingtheCachingofWebPageswithIIS4.0)
(PRB:BrowserDoesntShowMostRecentVersionsofhtm/aspFiles)
(HowtoUsePragma:No-cachewithIISandIE)

#5myterm,butnotmytechnique.IE5.0candefeat#1-#4usedinconjunctionbutadding#5willbreakit.Iusuallyusesomethinglike"?NoCache=Rnd"afterastatement.BillWilkinson(ofChili!Soft)hasproposedanalternateof?NoCache=Server.URLEncode(Now())".


--------------------------------------------------------------------------------

Anotherthingtoremember:Netscapewillcontinuetocache,evenifyouturnallcachingoff.Thisbehaviorpersistedthrough4.5PR1,PR2,andnowinthereleasedversionof4.5.

Ifyoufearyoumighthavetodealwithcachinglater,youmightwanttobuildcontingenciesintoyourappasyougo.Retrofitting#5throughoutevenamedium-sizedappwouldtakearathersizeableeffort.Youcouldretrofit#1-#4(inclusive)ratherquicklywithasinglepassthroughtheapplication,but#5takesalotofextraeffort.Andtothatend,IdonteverResponse.RedirectanywhereinmycodeexceptsamplecodeIposttothelists(thenagain,theonlytimeIuseResponse.WriteistothelistbecauseIrelyonmyUtilities-Form.inclibraryforDisplay()andHTML()).EverythingisRedirect(NewURL)wheretheRedirectfunctionlookslikethis:


FunctionRedirect(NewURL)

IfNotIsEmpty(NewURL&"")Then
DimQuestionMark

QuestionMark=Instr(NewURL,"?")

IfQuestionMark=0Then
Response.RedirectNewURL&"?"&NoCacheURL()
Response.End
Else
Response.RedirectNEWURL&"&"&NoCacheURL()
Response.End
EndIf
EndIf

EndFunction
andNoCacheURLlookslikethis:


FunctionNoCacheURL()

OnErrorResumeNext

Randomize
RandomizenotneededifyouuseNow()

NoCacheURL="NoCache="&Server.URLEncode(rnd)

orNoCacheURL="NoCache="&Server.URLEncode(Now())
perBill

EndFunction</p>只要你想学,就没什么优缺点,上面那位大哥已经把网上的评论说了,但我认为想学哪个都一样,不然它就不可能在当今时代数字艺术方面存活到今天
活着的死人 该用户已被删除
沙发
发表于 2015-1-19 23:52:03 | 只看该作者
虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。
飘飘悠悠 该用户已被删除
板凳
发表于 2015-1-28 16:02:47 | 只看该作者
以上是语言本身的弱点,在功能方面ASP同样存在问题,第一是功能太弱,一些底层操作只能通过组件来完成,在这点上是远远比不上PHP/JSP,其次就是缺乏完善的纠错/调试功能,这点上ASP/PHP/JSP差不多。
简单生活 该用户已被删除
地板
发表于 2015-2-5 22:03:51 | 只看该作者
我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。
海妖 该用户已被删除
5#
发表于 2015-2-13 19:55:13 | 只看该作者
完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。
冷月葬花魂 该用户已被删除
6#
发表于 2015-3-4 01:09:41 | 只看该作者
不是很难但是英文要有一点基础网上的教程很少有系统的详细的去买书吧,另不用专门学习vb关于vbscript脚本在asp教材都有介绍
7#
发表于 2015-3-11 15:21:05 | 只看该作者
还有如何才能在最短的时间内学完?我每天可以有效学习2小时,双休日4小时。
第二个灵魂 该用户已被删除
8#
发表于 2015-3-19 01:00:11 | 只看该作者
虽然ASP也有很多网络教程。但是这些都不系统。都是半路出家,只是从一个例子告诉你怎么用。不会深入讨论,更不会将没有出现在例子里的方法都一一列举出来。
因胸联盟 该用户已被删除
9#
发表于 2015-3-27 00:10:25 | 只看该作者
哪些内置对象是可以跳过的,或者哪些属性和方法是用不到的?
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-23 09:29

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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