例一:
<html>
<head>
<title>ASP示例</title>
</head>
<body>
hello,world!
<script language="jScript" RUNAT="server">
response.write("欢迎你!")
</script>
</body>
</html>
结果:欢迎你! hello,world!
二:
<html>
<head>
<title>ASP示例</title>
</head>
<body>
hello,world!
<script language="vbScript" RUNAT="server">
response.write("欢迎你!")
</script>
</body>
</html>
结果:hello,world! 欢迎你!
三:
<%@ LANGUAGE=Jscript %>
<html>
<head>
<title>ASP示例</title>
</head>
<body>
hello,world!
<script language="vbScript" RUNAT="server">
response.write("欢迎你!")
</script>
</body>
</html>
结果:欢迎你! hello,world!
四:
<%@ LANGUAGE=Jscript %>
<html>
<head>
<title>ASP示例</title>
</head>
<body>
hello,world!
<script language="JScript" RUNAT="server">
response.write("欢迎你!")
</script>
</body>
</html>
结果:报错,说response没有定义。。。但JScript应该能识别response啊。。
asp好象没有规律啊:-0