c****y 发帖数: 10 | 1 实在是入门问题。。。
最简单的asp文件如下:
<%@ language=vbscript %>
<% for i=1 to 5 %>
this is <%=i%> line. |
<% next %>
为何竟然不能正常显示?
诚恳求助! |
z****k 发帖数: 49 | 2 服务器设置好了吗?
【在 c****y 的大作中提到】 : 实在是入门问题。。。 : 最简单的asp文件如下: : <%@ language=vbscript %> : : : <% for i=1 to 5 %> : this is <%=i%> line. | : <% next %> :
:
|
k*******y 发帖数: 219 | 3
you should define i first
dim i
【在 c****y 的大作中提到】 : 实在是入门问题。。。 : 最简单的asp文件如下: : <%@ language=vbscript %> : : : <% for i=1 to 5 %> : this is <%=i%> line. | : <% next %> :
:
|
s***f 发帖数: 173 | 4 No man, the precondition you have to declare variable i is you have put <%
Option Explicit%> at the top of the page.
If you don't do that then you dont need to define I.
so now that the problem may be cowboy does not install WEB SERVER.
【在 k*******y 的大作中提到】 : : you should define i first : dim i
|
k*******y 发帖数: 219 | 5
hoho,没有iis组件
sigh
【在 s***f 的大作中提到】 : No man, the precondition you have to declare variable i is you have put <% : Option Explicit%> at the top of the page. : If you don't do that then you dont need to define I. : so now that the problem may be cowboy does not install WEB SERVER.
|