这段代码怎么解释?
一本书里的例子:
<html>
<head>
<title>Hello World</title>
</head>
<body>
<% '表示下面要插入ASP 代码
For i=2 to 6 'ASP 中的循环语句
%>
<font size=<%=i%>>
Hello World!<br>
</font>
<%
Next 'For 循环结束标志
%>
</body>
</html>
问题:
<%=i%>是否与C语言中的++i等效即i=i+1那i++用Vb又该怎么写?那么i=i-1又怎么写呢?