Asp classic Server.CreateObject的替代方案

Asp classic Server.CreateObject的替代方案,asp-classic,vbscript,windows-ce,createobject,filesystemobject,Asp Classic,Vbscript,Windows Ce,Createobject,Filesystemobject,我正在用经典的ASP(在WindowsCE上)编写一个导航系统。 我需要一种基于调用脚本动态包含导航文件的方法。 我提出了以下代码,其中包括位于调用脚本文件夹中的nav.inc,以允许不同文件夹具有不同的导航功能 这在我的Windows测试机上运行良好,但在部署到Windows CE时则不行。代码和错误如下所示。如果有人能提供一个工作环境或任何反馈,那就太好了。谢谢 代码: Windows CE不支持创建对象和执行。 标记也不受支持,因此,您运气不好,抱歉 Server Object Imple

我正在用经典的ASP(在WindowsCE上)编写一个导航系统。 我需要一种基于调用脚本动态包含导航文件的方法。 我提出了以下代码,其中包括位于调用脚本文件夹中的nav.inc,以允许不同文件夹具有不同的导航功能

这在我的Windows测试机上运行良好,但在部署到Windows CE时则不行。代码和错误如下所示。如果有人能提供一个工作环境或任何反馈,那就太好了。谢谢

代码:


Windows CE不支持创建对象和执行。
标记也不受支持,因此,您运气不好,抱歉

Server Object Implementation
---------------------------

The Server object provides access to methods and properties on the server. 
Most of these methods and properties serve as utility functions.

Server method  Windows CE implementation
-----------------------------------------
CreateObject   Not supported
Execute        Not supported
GetLastError   Not supported
HTMLEncode     Not supported
MapPath        Fully supported
ScriptTimeout  Not supported
Transfer       Not supported
URLEncode      Fully supported

Server Object Implementation
---------------------------

The Server object provides access to methods and properties on the server. 
Most of these methods and properties serve as utility functions.

Server method  Windows CE implementation
-----------------------------------------
CreateObject   Not supported
Execute        Not supported
GetLastError   Not supported
HTMLEncode     Not supported
MapPath        Fully supported
ScriptTimeout  Not supported
Transfer       Not supported
URLEncode      Fully supported