能把照片变成q版的app:高分悬赏——ASP分时段访问!

来源:百度文库 编辑:高考问答 时间:2024/05/14 12:08:37
ASP分时段访问,时间从服务器读取怎么写?
也就是说,在某一或几个时段显示A,其他时段显示B,怎么写??????知道的帮帮我。麻烦写详细一点!本人菜鸟!

比方说:12点前显示A,12点后显示B

<%
if time()<#12:00:00# then
response.write "A"
else
response.write "B"
end if
%>