简体   繁体   English

如何使用ASP.NET访问网页中的用户控件Active X

[英]how access the user control Active X in web page using ASP.NET

I have developed user control for ActiveX control in C# then register this component & access as ActiveX control from access . 我已经在C#中为ActiveX控件开发了用户控件,然后通过access将这个组件和访问权限注册为ActiveX控件。 I want to access this user control in internet explorer . 我想在Internet Explorer中访问此用户控件。 how to access Active X control as web page? 如何以网页形式访问Active X控件?

i have developed the windows application & registered the ActiveX control at the time of installation of this application through setup (.NET) .i want to access this user control in the internet explorer page so i want to stored this user control web page at the time of installation permanently . 我已经开发了Windows应用程序,并在通过安装程序(.NET)安装此应用程序时注册了ActiveX控件。我想在Internet Explorer页面中访问此用户控件,因此我希望将此用户控件网页存储在永久安装时间。 how to stored this web page of access the registered active X control ? 如何存储访问已注册的活动X控件的网页?

You will need to use the " object " tag 您将需要使用“ object ”标签

<object id="myComObject" 
        classid="clsid:8B4DB064-FD61-11D5-9E82-00D059119277"></object>
<script>
    myComObject.DoStuff();
</script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM