VB6中ActiveX控件获取当前请求路径
有没有办法从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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您需要的是控件托管页面的 URL,那么听起来很简单。
您是否尝试过
Parent.URL
或Parent.URLUnencoded
?Sounds pretty simple if what you are after is the URL of the control's hosting page.
Have you tried
Parent.URL
orParent.URLUnencoded
yet?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.