dede首页模板修改:*.asp(VB)中可不可以加上其他脚本语言?

来源:百度文库 编辑:中科新闻网 时间:2024/04/29 23:05:50
例如:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
<script languge="javascript">
document.write("asd");
</script>
<script languge="VBscript">
msgbox"asd"
</script>
</body>
</html>
但是这个程序好像错了,我保存后刷新不了页面,是不是不能加脚本语言甚至VBscript?

脚本没有错!