hello-world-repeat.asp

来自「ASP is here...Learn it successfully...」· ASP 代码 · 共 27 行

ASP
27
字号
<%@ LANGUAGE="VBSCRIPT" %>

<HTML>
<HEAD>
<TITLE>Hello World, Active Server Pages!</TITLE>
</HEAD>
<BODY bgcolor="#DBFFBF" link="#0000FF" vlink="#800080">

<FONT SIZE=6 FACE="Comic Sans MS">

<%
Response.Write "Hello World!<BR> The time now is " & Time & " on " & Date 
%>

<HR>

<%= "Hello World!<BR> The time now is " & Time & " on " & Date %>

<HR>

Hello World!<BR> The time now is <%=Time%> on <%=Date%>

</FONT>

</BODY>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?