VB6中ActiveX控件获取当前请求路径

发布于 2024-12-03 06:39:13 字数 150 浏览 1 评论 0原文

有没有办法从VB6中的ActiveX控件获取当前请求路径?我想知道VB6是否有类似于VB.NET中的Request.Path的东西。

该控件使用 OBJECT 标记嵌入到 HTML 页面中。我想我可以通过 PARAM 传递当前请求路径,但我只是想听听其他选项。非常感谢。

is there a way to get the current request path from an ActiveX control in VB6? I am wondering if VB6 has something similar to Request.Path in VB.NET.

The control is embeded in an HTML page using the OBJECT tag. I guess I could pass the current request path through PARAMs, but I just wanted to hear other options. Many thanks.

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

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

发布评论

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

评论(2

浅沫记忆 2024-12-10 06:39:13

如果您需要的是控件托管页面的 URL,那么听起来很简单。

您是否尝试过 Parent.URLParent.URLUnencoded

Sounds pretty simple if what you are after is the URL of the control's hosting page.

Have you tried Parent.URL or Parent.URLUnencoded yet?

鱼窥荷 2024-12-10 06:39:13

ActiveX 组件可以通过 IOleClientSite::GetMoniker 调用来执行此操作,然而,这对于 VB6 来说很困难,您至少需要一个实现该接口的自定义类型库。

The ActiveX component can call across IOleClientSite::GetMoniker to do this, however this is difficult with VB6, you would need a custom type library implementing the interface at the very least.

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