检查客户端计算机上是否安装了 adobe reader
目前我正在开发一个网页,它将告诉用户客户端计算机上的某些配置。除此之外,还需要检测客户端计算机上是否安装了 Adobe Reader。我正在使用 ASP.NET/C#。
我查看了以下网址寻找答案 “检查 Adobe Reader 是否已安装 (C#)?”,但代码会查看服务器注册表位于安装 IIS 的位置,而不是运行浏览器的客户端计算机。
是否可以检测 Adobe reader 是否安装在客户端计算机上而不是托管网站的服务器上?
Currently I am working on a web page which will tell user about certain configurations on client machine. Out of this there is also requirement of detecting if Adobe Reader is installed on client machine or not. I am using ASP.NET/C#.
I have looked the following url for the answer
"Check Adobe Reader is installed (C#)?" but the code look into the server registry entires where IIS is installed and not the client machine where browser is running.
Is it possible to detect if Adobe reader is installed on client machine and not the server which is hosting the website?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请检查下面的脚本,它在 IE、FireFox 和 Chrome 中对我来说运行良好,
希望这有帮助,问候
pls, check the script below, it worked fine for me in IE, FireFox and Chrome
hope this helps, regards
我使用了这个脚本并在就绪函数上调用它:
注意:我在这里使用警报只是为了知道如何使用它。
另外在后面添加此代码:
希望有帮助。
I used this script and called it on ready function :
Note: i used the alerts here just to know how to use it.
Also add this code behind:
Hope it helps.