本文介绍了.asp页面上的jscript.dll?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,是否有人能够确认''jscript.dll''是IIS 5.0上.asp页面的必要

文件,以使用< script language =" JavaScipt" ;

runat =" SERVER"代码?看起来本节中的代码无法工作

并且因为它一直给我的声明而被识别:


" Microsoft JScript运行时(0x800A01B0)

在自动化操作期间找不到文件名或类名


并且我怀疑这个jscript.dll文件是必要的文件'

缺少或未安装,因为我在网络服务器的驱动器上搜索了

空。


提前致谢。

解决方案



测试:


< script language =" JavaScipt" runat =" SERVER">

var a = 1;

< / script>


返回:


Active Server Pages错误''ASP 0129''

未知脚本语言

/test.asp,line 1

服务器上找不到脚本语言''JavaScipt'。

-

Evertjan。

荷兰。

(请在我的电子邮件地址中将x'变为点数)





测试:


< script language =" JavaScipt" runat =" SERVER">

var a = 1;

< / script>


返回:


Active Server Pages错误''ASP 0129''

未知脚本语言

/test.asp,line 1

在服务器上找不到脚本语言''JavaScipt''。



这是拼写错误吗?


Steve




工作



是的JScript.dll是必要的任何Jscript代码在ASP,Wscript,

Cscript,Internet Explorer或任何其他使用MS脚本托管API

的机器上运行。


-

Anthony Jones - MVP ASP / ASP.NET


Hello, would anyone be able to confirm that ''jscript.dll'' is a necessary
file for an .asp page on IIS 5.0 to use the <script language="JavaScipt"
runat="SERVER"code? It looks like the code in this section is not working
and being recognized since it keeps giving me:

"Microsoft JScript runtime (0x800A01B0)
File name or class name not found during Automation operation"

and am suspecting that this jscript.dll file is a necessary file that''s
missing or not installed since my search on the webserver''s c drive came up
empty.

Thanks in advance.

解决方案


Testing:

<script language="JavaScipt" runat="SERVER">
var a=1;
</script>

returns:

Active Server Pages error ''ASP 0129''
Unknown scripting language
/test.asp, line 1
The scripting language ''JavaScipt'' is not found on the server.
--
Evertjan.
The Netherlands.
(Please change the x''es to dots in my emailaddress)




Testing:

<script language="JavaScipt" runat="SERVER">
var a=1;
</script>

returns:

Active Server Pages error ''ASP 0129''
Unknown scripting language
/test.asp, line 1
The scripting language ''JavaScipt'' is not found on the server.

Is that cos of the typo?

Steve


working

up

Yes JScript.dll is necessary for any Jscript code to run in ASP, Wscript,
Cscript, Internet Explorer or anything else using the MS script hosting APIs
on the machine.

--
Anthony Jones - MVP ASP/ASP.NET


这篇关于.asp页面上的jscript.dll?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 13:03