行业动态
asp跟据不同时间转向不同页面
发布日期:2009-08-27 阅读次数:3027 字体大小:
<%
dim abc
abc=hour(now())
if abc>6 and abc<20 then
    response.redirect "china/"
else
    response.redirect "news/"
end if
%>