仓酷云

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

[学习教程] ASP网页设计经由过程ASP在Flash中妙用Cookie

[复制链接]
莫相离 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 23:15:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
专业性的服务。有的ASP商提供垂直型的应用服务,针对某一特定行业提供应用服务。cookieWrittenby:GünterHoffellner
Translatedby:BernhardSpuida
Firstpublished:9/8/2000

SettingorreadingcookiesinFlashmaybenecessaryforexampletoextendthepersonalizationofaweb
sitetotheFlashfile.

Flashdoesnotsupportdirectsettingandreadingofcookies.Thus,youeitherhavetotaketheoften
publisheddetourofusingJavaScriptoryoujustuseASPscriptstosetandreadcookies.Thishasamong
otherthingstheadvantagethatFlashcanaccesscookiesevenwhenJavaScriptisdisabled.

TheFlashFile
InthefollowingtheFlashfilewhichcanreadandsetcookiesattheclientisdescribed.Thefilecalls
theASPScriptstestCookies.asp,setCookies.aspandgetCookies.asptogainaccesstothebrowserscookies
viaASP.

TheFlashfiletestsforthepermissiontosetclientsidecookiesandallowsenteringdatathatistobe
storedinacookie.Thefilealsoreadsthecookiecontentanddisplaysitonscreen.

Therearetwofilesinthedownload:one.flainEnglish,andasecondoneinGerman.Thecompiled.swfis
availableinGermanonly.

TheUserInterface
Theuserinterfaceisdividedintothreepartswhicharedescribedinthefollowingsections.


Figure1:UserinterfaceinFlash

Step1:
TheuserclickstheSTARTTESTbuttontotriggerthetestontheservertodeterminewhetherthebrowser
ofthepagevisitoracceptscookies.Thestatusmessageindicateswhetherthebrowseracceptscookiesor
not.

Step2:
Inthecaseofcookiesbeingaccepted,theFlashmovierunsontothesecondpartandwaitsfordatatobe
savedinacookie.WithaclickontheSENDDATAbutton,thedataistransmittedtotheserver.

Step3:
Inthelastpart,theserverpassesthecookiedatabacktotheFlashfilewheretheyarewrittenintothe
textfields.

TheScriptsoftheFlashFile
ThegraphicpartoftheFlashfileisbuiltaccordingtostandardprocedureandisnotdescribedindetail
forthisreason.

ThelayerwiththenameSourcecodeisimportant,asthiscontainsthesourcecodeoftheFlashfile.We
willgointothedetailsofthisnow.


Figure2:TimelineinFlash


//Frame1
SetVariable:"cookies"="false"
stop


Thevariablecookiesisinitialisedwiththestringfalse.falseisusedastheserverdoesnot
returnthebooleanvaluestrueandfalse,butastringwiththevalueof"true"or"false".Flashwaits
forthebuttonclickforstartingthecookietest.


//Frame2,Labelstep1
LoadVariables("/testcookies.asp",0)


Thefiletestcookies.aspiscalledandreturnstrueorfalse(Cookiesaccepted-Cookiesnot
accepted).


//Frame10
If(cookieseq"true")
SetVariable:"cookietest"="Cookiescanbeset"
Stop
Else
SetVariable:"cookietest"="Cookiesnotallowed.Pleaseenable."
GotoandStop("nocookies")
EndIf


InFrame10adifferentmessageisdisplayedinthestatusfielddependingontheresultofthecookie
test.

Ifcookiesarenotaccepted,Flashjumpstothelabelnocookies,stopsthereandwillnotacceptany
inputbutanothercookietest.Intheif-conditioncookieseq"true"issetinquotesastheserverdoes
notreallyreturnthebooleanvaluesoftrueorfalse,butastringwhichisimmediatelytestedassuch.
Alsonotethatthestringcomparisonrequireseqinsteadof=.

ThestopcommandforcesFlashtowaitforaclickeventoftheSENDDATAbutton.Sendingthecookie
datatotheserverhappensasfollows:


//Frame11,Labelstep2
LoadVariables("/setcookies.asp?cookiename="&name&"&"&
"cookiemail="&email&"&"&"cookietelephone="&telephone,0)


Inthisscript,aquerystringcontainingtheuserentriesissenttothefilesetcookies.asp.Forthe
compositionofthequerystring,refertothearticleDataExchangebetweenASPandFlash(Germanonly).


//Frame19,Labelstep3
LoadVariables("/getcookies.asp",0)

ThedatareadfromacookiebyASPisloadedintotheFlashfile.
//Frame28
Stop


The</p>写软件都是想的时间比写的时间要长的.如果反过来了就得看看是什么原因了.另外大家可以回去问问公司里的小MM.(一般企业里,跟你们交付软件接触得最多的是她们)
简单生活 该用户已被删除
沙发
发表于 2015-1-20 08:44:37 | 只看该作者
哪些内置对象是可以跳过的,或者哪些属性和方法是用不到的?
小女巫 该用户已被删除
板凳
发表于 2015-1-25 07:24:51 | 只看该作者
如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助:
只想知道 该用户已被删除
地板
发表于 2015-1-25 22:39:21 | 只看该作者
尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。
山那边是海 该用户已被删除
5#
发表于 2015-1-26 12:46:30 | 只看该作者
作为IE上广为流传的动态网页开发技术,ASP以它简单易学博得了广大WEB程序爱好这的青睐,而且它对运行环境和开发品台的不挑剔,以及有大量有效的参考手册,极大的推广了它的发展。
再现理想 该用户已被删除
6#
发表于 2015-2-1 16:41:18 | 只看该作者
哪些内置对象是可以跳过的,或者哪些属性和方法是用不到的?
海妖 该用户已被删除
7#
发表于 2015-2-7 09:25:53 | 只看该作者
你可以通过继承已有的对象最大限度保护你以前的投资。并且C#和C++、Java一样提供了完善的调试/纠错体系。
活着的死人 该用户已被删除
8#
发表于 2015-2-21 12:30:43 | 只看该作者
ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:
愤怒的大鸟 该用户已被删除
9#
发表于 2015-3-6 20:13:53 | 只看该作者
Application:这个存储服务端的数据,如果不清除,会直到web应用程序结束才清除(例如重启站点)
第二个灵魂 该用户已被删除
10#
发表于 2015-3-13 07:56:42 | 只看该作者
运用经典的例子。并且自己可以用他来实现一些简单的系统。如果可以对他进行进一步的修改,找出你觉得可以提高性能的地方,加上自己的设计,那就更上一个层次了,也就会真正地感到有所收获。
精灵巫婆 该用户已被删除
11#
发表于 2015-3-20 16:35:29 | 只看该作者
以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2025-1-9 01:39

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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