有人可以帮我把这两段代码从PHP转换成Classic-ASP ...... ??
<?php $show_popup = 0; if(!isset($_COOKIE['jquery_popup'])){setcookie('jquery_popup','jQuery Popup',time() + 120);
$show_popup = 1;
}
?>
然后从上面调用变量:
<?php
if($show_popup == 1){
?>
SOME OF MY CONTENT
<?php
}
?>
提前完成。
答案 0 :(得分:0)
<%
show_popup=0
if Request.Cookies("jquery_popup")="" then
Response.Cookies("jquery_popup")="jQuery Popup"
Response.Cookies("jquery_popup").expires = DateAdd("h",2,Now())
show_popup=1
end if
%>
然后
<%
if show_popup=1 then
%>
BLAH
<%
end if
%>