Click here to Skip to main content
15,891,864 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello experts

I have SDK and Scanner of finger print of SecuGen® Hamster™ IV. They also give activex control.
How can I use that control in aspx page?

I want to know how to use third party com component in web application?.


For example .
I have web application. In that application it asks for user finger print for Authentication.
Using finger print I can login that web site.
For that I have to attach finger print device on client machine and User write the url in the IE and Open that web site and put the finger on the device and it scan that finger and login that user if the finger match to that website data base.
Posted
Updated 10-Feb-10 22:21pm
v3
Comments
ashishdhingra 3-Dec-12 0:11am    
Are you able to use it in web application.I have same requirement.can you share activex and sdk code for asp.net

1 solution

Step 1 :Create a Windows Control Library
Step 2: Compile the code
Step 3 Create ASP.NET Web Application
Step 4 : Copy the Windows Control Library DLL in ASP.NET Application(bin dir in case of VB.NET)
Step 5 : In HTML /ASP.NET Page Add <object> tag
<object id="UserControl1"
classid="http://localhost/WebApplication1/WindowsControlLibrary2.dll#WindowsControlLibrary2.UserControl1" height="300" width="300" viewastext="">
Try running html/aspx page


P.S.: Based on ActiveX state, you would need to enable proper settings in your browser. Like 'Allow signed ActiveX', etc.

Links for help:
How to host ActiveX controls in a Web form[^]
 
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