本文介绍了.net activeX等效的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有纯粹的.NET替代ActiveX?我问,如果有一种方式,我写一个厚的客户端控件加载和互动在.NET的网页中,与NO com。

Is there a pure .NET replacement for ActiveX? I'm asking if there is a way for me to write a thick client side control to be loaded and interacted with in a web page in .NET, with NO com.

编辑:我不想在纯.NET中的ActiveX,我想要一个.NET替代ActiveX。

I don't want ActiveX in pure .NET, I want a .NET alternative to ActiveX.

推荐答案

恐怕还没有完美的管理只等同于ActiveX。主要是有很好的理由。 ActiveX是一个危险的技术安全明智,复制它的效果在许多方面将需要重复缺乏安全。

I'm afraid there is no perfect managed only equivalent of ActiveX. Mostly for good reason. ActiveX is a dangerous technology security wise and duplicating it's effects in many ways would require duplicating the lack of security.

您是否尝试过SilverLight?

Have you tried SilverLight?

这不是一个完美的ActiveX替换,因为它不授予您未经授权的访问机器。但它确实提供了在.Net中编写丰富的客户端控件的能力。

It's not a perfect ActiveX replacement because it doesn't grant you unferreted access to the machine. But it does provide the ability to write rich client side controls in .Net.

这篇关于.net activeX等效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 22:39