如何在 Internet Explorer 中检查用户是否下载了 CAB 文件

发布于 2024-09-03 01:56:04 字数 346 浏览 2 评论 0原文

我有一个托管 CAB 文件的页面,如下所示

<object id="SOmeID" class="Class1" codebase="..\CAB\Client.cab#version=2,0,0,2" classid="clsid:SomeIDComeshere" VIEWASTEXT >

第一次浏览此页面时,会出现一条消息,要求下载 CAB 文件,由用户选择下载或不下载 有些用户不想下载。

因此,某些页面无法正确呈现或无法按预期运行。

我的问题: 当客户打电话报告问题时,我如何检查他们是否已下载 cab 文件? 是否有我需要检查的 Windows 文件夹?

I have a page that hosts CAB file like the one below

<object id="SOmeID" class="Class1" codebase="..\CAB\Client.cab#version=2,0,0,2" classid="clsid:SomeIDComeshere" VIEWASTEXT >

When this page is browsed the first time, there is a message to download the CAB file and is upto the user's choice to download or not
Some users prefer not to download.

Due to this certain pages are not rendered correctly or do not function as they are expected to.

My question:
When client call up to report an issue, how do I check if they have downloaded the cab file or not?
Is there any windows folders i need to check for?

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

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

发布评论

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

评论(1

怪我闹别瞎闹 2024-09-10 01:56:04

使用 ActiveXObject 对象:

try { 
   var control = new ActiveXObject(ProgId);
   // installed
}
catch(e) {
   // not installed
}

Use ActiveXObject object:

try { 
   var control = new ActiveXObject(ProgId);
   // installed
}
catch(e) {
   // not installed
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文