Azure Web 应用上的经典 ASP 和 Server.CreateObject
Classic ASP with Server.CreateObject on Azure Web apps
我有一个经典的 ASP 应用程序,它通过 Server.CreateObject
使用自定义编写的 VB6 COM 对象 (.dll)。
我可以在 Azure Web 应用程序中部署和 运行 经典 ASP (.asp),但我不确定如何达到可以使用的程度我的 VB6 COM 对象。
将 .dll 上传到 Web 文件夹并使用 Server.CreateObject
只会产生预期的结果:
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
是否可以使用您自己的自定义 .dll?
使用 Web 应用程序无法做到这一点。使用虚拟机,您拥有更多控制权,并且能够注册您的 COM DLL。
我有一个经典的 ASP 应用程序,它通过 Server.CreateObject
使用自定义编写的 VB6 COM 对象 (.dll)。
我可以在 Azure Web 应用程序中部署和 运行 经典 ASP (.asp),但我不确定如何达到可以使用的程度我的 VB6 COM 对象。
将 .dll 上传到 Web 文件夹并使用 Server.CreateObject
只会产生预期的结果:
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
是否可以使用您自己的自定义 .dll?
使用 Web 应用程序无法做到这一点。使用虚拟机,您拥有更多控制权,并且能够注册您的 COM DLL。