如何使 .NET C# ActiveX 插件在 Mac Safari 上运行?
所以我创建了一个在 IE Chrome 等中工作的 Windows 插件(有一种简单的方法可以使 active x 插件在 Windows 下基于 Netscape 的浏览器上工作)如何将其移植到 Mac?
So I've created a plugin for windows working in IE Chrome etc (there is an eazy way to make active x plugin work on Netscape based browsers under windows) how to port it to mac?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你使用 silverlight,你可以编写 C# 代码,它可以在 mac/safari 和 mac/firefox 上运行
请阅读此处:http://silverlight.net/
if you use silverlight you can code C# and it will work on mac/safari and mac/firefox
read here: http://silverlight.net/
切换到 Java 小程序。您将无法使 ActiveX 控件在 Windows 以外的任何操作系统上运行。
Switch to a Java applet. You won't be able to make an ActiveX control work on anything other than Windows.
ActiveX 是一项 Microsoft Windows 技术。即使有一个 Safari 插件,您也会使用 Mac 操作系统上不存在的 API,实际上肯定会出现问题(如果它能运行的话)。如果您想要一个跨平台的浏览器插件,请使用 Java 小程序或其他类似的技术。
ActiveX is a Microsoft Windows technology. Even if there were a Safari plugin for it, you would be using APIs which don't exist on the Mac OS, virtually guaranteeing that problems would occur (if it would even run at all). If you want to have a cross-platform browser plugin, use Java applets or another similar technology.