Click here to Skip to main content
15,894,955 members
Please Sign up or sign in to vote.
4.00/5 (2 votes)
See more:
Hi to all!!
I create a simple acrivex that borwse my file..... in .net (i'm using vs 2010)
the simple question is :
When i use folderdialog control , in the web page there's an error IO , i've not permission to use this....

I try to sign the .dll.. but when i sign the dll by vs 2010 , the activex don't appare in the wbe page.... no error. simple it's invisible....

How can i use folder dialog option and other file class in this activex ??

Thanks in Advance.
Posted
Updated 24-May-11 3:50am
v2

1 solution

No, you didn't create an ActiveX component in .NET. The compilers cannot target building a true ActiveX component. You created a COM-exposed library.

The certificate you use to sign the code must be verifiable to a browser. If you're using a cert you generated yourself on your machine, it won't work. The browser has no way of verifying the authenticity of the cert. You have to get a code-signing cert from a public certificate authority, like Verisign.

If the client does not have the appropriate version of the .NET Framework installed (whatever version you built your code against), your component won't work at all.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900