I am planning to build an 64 bit ActiveX control to be used in my web page. So my question is it OK to build it with C#? Will it be able 开发者_如何学Goto handle complex business logic? The reason why I ask this is that I am more familiar with C# than ATL.
Before raising this question, I searched all the related posts, they are all about how to build ActiveX with C#. However I would like to know if it will be a good choice or ATL will be more better?
By the way, the previous version of my ActiveX control is in 32 bit coded with VB6, but VB6 is impossible to build 64 bit ActiveX control.
I appreciate any of your suggestions and comments!
Regards, Shuping
If you're most comfortable with C#, why not build it in Silverlight? Will be a lot easier than building and deploying ActiveX controls.
How about a Windows Forms app launched from Clickonce or Java web start? You cannot run a 64bit ActiveX from a 32bit IE.
精彩评论