我的代码如下:
<html>
<head>
<title>九九乘法表</title>
</head>
<body>
<%
dim a,b
for a=1 to 9
for b=1 to 9
response.write a&"*"&b&"="&a*b&"<br>"
next
next
%>
</body>
</html>
<html>
<head>
<title>九九乘法表</title>
</head>
<body>
<%
dim a,b
for a=1 to 9
for b=1 to 9
response.write a&"*"&b&"="&a*b&"<br>"
next
next
%>
</body>
</html>