注册 登录
编程论坛 ASP技术论坛

我的第一个asp程序无法运行-帮帮我

pcx 发布于 2008-01-14 22:39, 909 次点击
<html>
<head>
<title>asp程序</title>
</head>
<body>
<%
 dim mystring
 mystring="我的字符串"
 Response.write mystring'输出该字符串
%>
</body>
</html>
我不知道那里有错!谢谢
4 回复
#2
madpbpl2008-01-15 00:24
<html>
<head>
<title>asp程序</title>
</head>
<body>
<%
dim mystring
mystring="我的字符串"
Response.write mystring'
%>
</body>
</html>

<html>
<head>
<title>asp程序</title>
</head>
<body>
<%
dim mystring
mystring="我的字符串"
Response.write "输出该字符串"
%>
</body>
</html>
#3
skybirdzw2008-01-15 08:10
回复 1# 的帖子
在哪会恕不出来呢??是不是和你设置有关??
#4
heyufu2008-01-15 14:20
有什么提示
#5
yutao862008-01-15 14:48
你保存的扩展名是.asp吗??

是.htm的话是无法运行asp程序的
1