《不同时间显示不同问候》
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>不同时间显示不同的问候语</title> <% If Time<#12:00:00# And Time>=#00:00:00# Then bgc="pink" ElseIf Time<#19:00:00# And Time>=#12:00:00# Then bgc="navy" Else bgc="red" End If %> </head> <body bgcolor="<%= bgc %>"> <font color="#009966" face="黑体"> <% If Time<#12:00:00# And Time >=#00:00:00# Then %> 早上好。祝你今天有新的开始! <% Else If Time<#19:00:00# And Time>=#12:00:00# Then %> 下午好!祝你工作愉快! <% Else %> 晚上好,今晚不出去吗? <% End If %>
|