直播中
方法一:
無論何時(shí)你在兩頁(yè)之間,有一個(gè)非常簡(jiǎn)單可靠的方法:請(qǐng)求一個(gè)SessionID在第一頁(yè),傳遞它到下一頁(yè)。與這一頁(yè)請(qǐng)求到的SessionID比較。相同說明客戶端瀏覽器接受Cookies;不同則不接受。很簡(jiǎn)單吧。
比如你可以在第一頁(yè)中放一個(gè)(hidden field),并把SessionID寫入它。提交后,從頁(yè)面數(shù)據(jù)中取出SessionID.像這樣:
<form name="Form1" method="post" action="sessions2.asp">
UserName:<input name="username"><br>
Password:<input name="userpassword">
<input type="hidden" name="theSessionID" value="<%=Session.SessionID%>"><br>
<input type="submit" value="Submit">
</form>
在第二頁(yè)中我們來判斷SessionID是否相同。
<%
dim theSessionID
theSessionID = Request.Form("theSessionID")
If theSessionID = Session.SessionID Then
"當(dāng)二者相等時(shí),則cookie功能開啟
Response.Write "Cookie已開啟"
Else
"若二者相等時(shí),則cookie功能關(guān)閉
Response.Write "Cookie沒有開啟!"
End If
%>
方法二:
也可用這種方法,首先在一個(gè)頁(yè)面里寫入一個(gè)cookie,如:
<%
Response.Cookies("status")="onoroff"
%>
在第二頁(yè)里讀出此cookie:
<%
if Request.Cookies("status")="" then
"當(dāng)cookies("status")里沒有值時(shí),則cookie功能沒有開啟
Response.Write "Cookie沒有開啟!"
else
"當(dāng)cookies("status")里有值時(shí),則cookie功能開啟
Response.Write "Cookie已開啟"
end if
%>