Get your own Slide Show!
<%
saat = Hour(Now)
If saat >= 00 or saat <= 08 then 'saat 00 ile 08 arasi ise
Response.Redirect("gece.html") 'gece.html ye yonlen
Elseif saat >= 09 or saat <= 16 then'saat 09 ile 16 arasi ise
Response.Redirect("sabah.html") 'sabah.html ye yonlen
Elseif saat >= 17 or saat <= 23 then ' saat 17 ile 23 arasi ise
Response.Redirect("aksam.html") 'aksam.html ye yonlen
End if
%>