如何在Flash中处理Cookies?_编程10000问

testCookies.asp<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />


' 检查浏览器是否接受Cookies.

<%

strTest = Request.QueryString("CookieTest")

If UCase(strTest) <> Ucase("true") Then

Session("__FlashCookieTest") = True

' 第一次呼叫.设置session变量.

' 用QueryString重定向.

 strURL = Request.ServerVariables("script_NAME")

 strQueryString = "?CookieTest=true"

 Response.Redirect(strURL & strQueryString)

 Response.End

Else

If Session("__FlashCookieTest") = True Then

' 已完成重定向.检查session变量是否包含值.

strOut = "Cookies=true"

' Session变量包含值,因此浏览器接受Cookies.

 

 Else

strOut = "Cookies=false"

' Session变量为空,浏览器决绝Cookies.

 End If

End If

Response.Write(strOut)

' 输出到Flash.

%>

 

setCookies.asp


<%

For each item in Request.QueryString

       Response.Cookies(item) = Request.Querystring(item)     

Next

%>

 

getCookies.asp


' 读取 Cookies

<%

For each Cookie in Request.Cookies

 strOut = strOut & Server.URLEncode(Cookie) & "="

 strOut = strOut & Server.URLEncode(Request.Cookies(Cookie))

 strOut = strOut & "&"

Next

Response.Write strOut

%>

时间: 2024-10-31 15:54:37

如何在Flash中处理Cookies?_编程10000问的相关文章

如何把一个Excel文件放到ASP页面中去?_编程10000问

<%set xlApp = Server.CreateObject("Excel.Application")xlApp.Visible = false<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> ' 使服务端不出现Excel窗口.set myWorkbook = xlApp.Workbooks.Add ' 建立一个worksheet.set

何时将数据装载到Application 或 Session 对象中去?_编程10000问

<%Function GetEmploymentStatusListDim dd = Application(?EmploymentStatusList?)If d = ?? Then' FetchEmploymentStatusList 函数从数据库取数据,返回一个数组d = FetchEmploymentStatusList()Application(?EmploymentStatusList?) = dEnd IfGetEmploymentStatusList = dEnd Functio

如何在ADSI中查询用户属性?_编程10000问

如何在ADSI中查询用户属性?<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> <%Dim x On error resume next'Set x = GetObject("WinNT://kenfilszwin2k/allen")strLDAP="LDAP://kenfilszwin2k/CN=Allen He,OU=kenfils

如何在ASP中恰当地运用Cookies?_编程10000问

remberme.asp<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> ' 用户提交个人信息. <% response.Cookies("information")("姓名")=request.form("name") response.Cookies("information")(&

如何在网站中插播广告?_编程10000问

如何在网站中插播广告? 首先,我们要写一个adrot.txt以调用: adrot.txt<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> redirect width 550 height 60 border 0 * images/chunfengad.gif http://www.shenzhaoyang.com 欢迎访问闪亮日子之精彩春风! 50 ' 显示百分比 im

如何刪除客户端的Cookies?_编程10000问

<%@ Language=VBScript %> <% Option Explicit response.buffer=true Dim objCookie Response.Write "春风精彩之不可告人删除CookieS<BR>" For Each objCookie In Request.Cookies Response.Cookies(objCookie).Expires = "1,1,2001" ' 设置时间删除. Next

如何在ASP里建立表格?_编程10000问

如何在ASP里建立表格?<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> <% Dim conn Set conn = Server.CreateObject("ADODB.Connection") conn.Open "DSN=blah" ' 建立连接   Dim strSQL strSQL = "CREATE T

如何在ASP里显示进度条?_编程10000问

response.buffer=true ' 应用缓存技术. dim lostnum ' 防止dmax过大而dstep过小. dim shownum delayshow(dstep,dmax) sub delayshow(dstep,dmax) ' dmax表示要处理多少dmax(步)才能完成全过程,dstep表示已处理的占全过程的大致百分比.  <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office

ASP问答集_编程10000问

问:为什么我的记录集的RecordCount值总是返回-1? 答:你应当使用这种模式来打开存取数据库的记录集:   rec.open strSQL,conn,1,1   其中的strSQL是操作数据库的SQL语句;conn是联接数据库的Connection 变量. 问:我在ASP脚本中写了很多的注释,这会不会影响服务器处理ASP文件的速度? 答:经国外技术人员测试,带有过多注释的ASP文件整体性能仅仅会下降0.1%,也就是说基本上不会影响到服务器的性能下降的. 问:我需不需要在每个ASP文件的开