VBScript Simple Greeting
VBScript
Download (.zip)
<html>
<head> <script type="text/vbscript"> function greeting() i=hour(time) if i < 10 then document.write("Good morning!") else document.write("Have a nice day!") end if end function </script> </head>
<body onload="greeting()"> </body>
</html>
|