时间:2022-03-21 09:28:20 | 栏目:VBS | 点击:次
本例中,VBScript 代码调用 Document 对象的 Write 方法来传递字符串。所有操作都在客户端完成:无需指定服务器端操作、无 PERL痕迹、稳定、清晰!
Sub PrintWelcome
Dim h
h = Hour(Now)
If h < 12 then
Document.Write "早上好!"
ElseIf h < 17 then
Document.Write "下午好!"
Else
Document.Write "晚上好!"
End If
Document.Write "欢迎进入 VBScript 世界。"
Document.Write "现在是 "
Document.Write Date() & " 的 " &Time() & "。"
End Sub
</SCRIPT>