Fingerprint Reader in ASP.NET
Has anyone had any success using a fingerprint scanner in an ASP.NET application? I am looking for a solution where a user would click a button in our web application that would then trigger a locally installed fingerprint reader, take the fingerprin开发者_StackOverflow中文版t and then upload the scanned image back to the server.
To the best of my knowledge, there are four approaches to this:
- An ActiveX control (many fingerprint reader makers provide one with their SDKs.)
- A BHO and other plugins for other browsers
- A server on the client that the web server can call to based on IP address.
- A USB to Ethernet device that provides 3 but in a hardware form.
Each has pros and cons, that you need to analyze with the particulars of your application.
However, probably a better solution is simply to use the automation clients that come with fingerprint readers. Everyone I have seen provides some sort of mechanism to detect when a web page appears, scans a fingerprint, and automatically fills in a password. Is there a reason you can't use that with a random password?
精彩评论