<%
Dim bSurvey
' 是否顯示調查表
const bID="1"
' 調查表的id
bSurvey=false
' 檢查調查表是否已經顯示過.
if instr(request.Cookies("s"),":" & bID & ":")=0 then
' 如果調查表沒有顯示,更新Cookie
response.Cookies("s").expires = DateAdd("d",60,now())
' 設定Cookie過期時間60天.
response.Cookies("s").path = "/"
' 設定路徑.
response.Cookies("s") = request.Cookies("s") & ":" & bID & ":"
' 寫入Cookie.
bSurvey=true
end if
%>
知道我們給每個調查表一個id的好處了吧?如果有多個彈出窗口,可以很容易控制彈出順序的。
再在頁尾加入下面的ASP代碼,用來判斷是否彈出窗口:
<% if bSurvey then %>
<script>
window.open("/survey/displaysurvey.asp?q=" &
' 用window.open()來打開新窗口.
bID,"SURVEY","width=350,height=400,top=0,left=0,scrollbars=yes")
</script>