ASP程序错误,帮忙看下

来源:百度知道 编辑:UC知道 时间:2024/06/03 16:46:44
这是我写的,我是初学者,按照书上进行,却错误了,程序如下
<html>
<head>
<title>
第一个ASP程序
</title>
</head>
<body>

<% resonse.write '这是第一个ASP程序: hello world' %>

</body>
</html>

提示
错误类型:
Microsoft VBScript 运行时错误 (0x800A01A8)
缺少对象: ''
/learnasp/helloworld.asp, 第 9 行

浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; EzCenterExplorer
帮忙,谢谢

错误一、response写错
错误二、字符就用双引号而不是单引号

正确程序:
<html>
<head>
<title>
第一个ASP程序
</title>
</head>
<body>

<% response.write "这是第一个ASP程序: hello world" %>

</body>
</html>