根据时段自动切换你的站点CSS风格

<link rel="stylesheet" type="text/css" href="<%
if hour(now)<12 then
  response.write "a.css"
else
  if hour(now)<17 then
    response.write "b.css"
  else
    response.write "c.css"
  end if
end if
%> " />
posted @ 2008-03-10 15:57  Lee Vane  阅读(174)  评论(0)    收藏  举报