有没有办法让 Visual Studio 为经典 ASP 中的后期绑定对象提供智能感知?

发布于 2024-09-02 07:05:49 字数 480 浏览 6 评论 0原文

我正在开发一个经典 ASP(使用 VB 脚本)项目,其中我从 ActiveX 控件实例化一个对象,如下所示:

Dim objHelper
Set objHelper = Server.CreateObject("HelperLib.HelperObj")

Visual Studio 2005 为属性和方法的第一“层”提供智能感知,但它似乎无法查看属于主对象成员的属性和方法。例如:

objHelper.               'Properties and methods show up after the period   '
objHelper.FirstProperty. 'No properties and methods are shown after the period'

有没有办法以某种方式“帮助”Visual Studio 查看这些对象类型,以便我可以在更强类型的环境中工作?

I'm working on a Classic ASP (with VB Script) project where I'm instantiating an object from an ActiveX control like so:

Dim objHelper
Set objHelper = Server.CreateObject("HelperLib.HelperObj")

Visual Studio 2005 provides intellisense for the first "layer" of properties and methods, but it can't seem to see properties and methods that are members of the main objects. For example:

objHelper.               'Properties and methods show up after the period   '
objHelper.FirstProperty. 'No properties and methods are shown after the period'

Is there a way to "help" Visual Studio in some way to see these object types so that I can work in a more strongly-typed environment?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漆黑的白昼 2024-09-09 07:05:49

不幸的是,2005 年并没有这样做。然而,2008 年在这方面做得非常好。一旦你安装了sp1,就是这样。

Unfortunately, 2005 does not do this. 2008 does a very good job of it, however. Once you install sp1, that is.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文