hello world
hello world
hello world
hello world
hello world
源码:
<%@ language = vbscript %>
<html>
<title>
hello world
</title>
<body>
<%
以下循环输出hello world字符串,字体由小变大
for i=1 to 5
response.write “<font size=” & i & “>hello world</font><br>”
next
%>
</body>
</html>