用asp编写一个函数或过程,实现如下功能:根据系统时间,判断下午、上午,并分别给出问候:下午好、上午好
求救<%if(hour(now)>12)thenresponse.write("下午好")elseresponse.write("上午好")endif%>我做出来啦^_^...
求救
<%
if (hour(now)>12) then
response.write("下午好")
else
response.write("上午好")
end if
%>
我做出来啦^_^ 展开
<%
if (hour(now)>12) then
response.write("下午好")
else
response.write("上午好")
end if
%>
我做出来啦^_^ 展开
展开全部
function welcome()
thetime=hour(time) '此处time也可以改用now
if thetime<13 then '当然你若觉得12点之后就算下午,也可以改成12
response.write("Good morning!")
end if
if thetime>=13 then
response.write("Good Afternoon!")
end if
end function
调用的时候就这么调用:
call welcome()
当然了不要忘记vbscript的<%%>标志对.
thetime=hour(time) '此处time也可以改用now
if thetime<13 then '当然你若觉得12点之后就算下午,也可以改成12
response.write("Good morning!")
end if
if thetime>=13 then
response.write("Good Afternoon!")
end if
end function
调用的时候就这么调用:
call welcome()
当然了不要忘记vbscript的<%%>标志对.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询