由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
BuildingWeb版 - asp文件的显示
相关主题
Re: [转载] webmonkey[转载] ASP的script function里, 可以query database吗?
Urgent: ASP support?How to read out part of a string like xx/xx/xxxx
请教:网页的Back按钮是怎么做的?can not execute global.asa help?
[转载] 请教ASP高手ASP究竟是怎么回事?
网页中数据库格式显示问题请问 Javascript + ASP + ADO ?
how to process session varible in javascript?《〈〈请问大家出现这样的问题么,多出的代码自动加入了HTML〉〉》
Re: Can asp invoke a software at the server side???Help, very urgent!ASP string.endswith 问题
为什么webpage里收不到ATL control 的eventQuestion on this ASP code.
相关话题的讨论汇总
话题: asp话题: tr话题: html话题: td话题: table
进入BuildingWeb版参与讨论
1 (共1页)
c****y
发帖数: 10
1
实在是入门问题。。。
最简单的asp文件如下:
<%@ language=vbscript %>


<% for i=1 to 5 %>

<% next %>
this is <%=i%> line.


为何竟然不能正常显示?
诚恳求助!
z****k
发帖数: 49
2
服务器设置好了吗?

【在 c****y 的大作中提到】
: 实在是入门问题。。。
: 最简单的asp文件如下:
: <%@ language=vbscript %>
:
:
: <% for i=1 to 5 %>
:
: <% next %>
:
this is <%=i%> line.

:

k*******y
发帖数: 219
3

you should define i first
dim i

【在 c****y 的大作中提到】
: 实在是入门问题。。。
: 最简单的asp文件如下:
: <%@ language=vbscript %>
:
:
: <% for i=1 to 5 %>
:
: <% next %>
:
this is <%=i%> line.

:

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.

1 (共1页)
进入BuildingWeb版参与讨论
相关主题
Question on this ASP code.网页中数据库格式显示问题
求助:文件夹移动后asp网站不work了how to process session varible in javascript?
vbscript and ASPRe: Can asp invoke a software at the server side???Help, very urgent!
[转载]国外空间乱码显示问题的解决为什么webpage里收不到ATL control 的event
Re: [转载] webmonkey[转载] ASP的script function里, 可以query database吗?
Urgent: ASP support?How to read out part of a string like xx/xx/xxxx
请教:网页的Back按钮是怎么做的?can not execute global.asa help?
[转载] 请教ASP高手ASP究竟是怎么回事?
相关话题的讨论汇总
话题: asp话题: tr话题: html话题: td话题: table