热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C#编程指南:利用ASP.NET和JavaScript实现带有Fingerprint功能的Web应用登录系统

本指南介绍了如何在ASP.NETWeb应用程序中利用C#和JavaScript实现基于指纹识别的登录系统。通过集成指纹识别技术,用户无需输入传统的登录ID即可完成身份验证,从而提升用户体验和安全性。我们将详细探讨如何配置和部署这一功能,确保系统的稳定性和可靠性。

使用asp.net C#Javascript登录使用Finerprint的Asp.net Web应用程序

我想使用指纹登录我的asp.net Web应用程序。 这意味着我不想使用任何登录ID和密码。 我只想用我的指纹登录。 我有一个3米有说服力的设备,设备工作正常,但我不知道如何将设备与我的软件集成。 我正在使用ActiveX。

我的Javascript代码是:

 $(document).ready(function () { $('#scan').click(function () { $('#dicscan').addClass('scanning'); setTimeout(function () { $('#dicscan').removeClass('scanning'); }, 20 * 1000); }); });   function OpenActiveX() { var port = document.getElementById("Comport"); port.COnopen= 1; if (port.error > 0) //Display errors if found alert(port.ErrorDescription); } function Matching() { var retval = 0; var port = document.getElementById("Comport"); port.Ksserialnumber = 1; port.KsCapture = 1; port.KsAuthenticatiOnMatch= 1; retval = port.KsMatchretvalue; if (retval > 0) { alert("Two fingers are Matched..."); window.open('ResultPage.html', '_self'); } else { alert("Finger Not Matched..."); } if (port.error > 0) //Display errors if found alert(port.ErrorDescription); }  

我在port.KsMatchretvalue中未定义。

我正在使用3M Cogent CSD 200型指纹读取器设备
希望您已经拥有SDK以下是此设备的一些代码,用于捕获和匹配详细信息以允许登录。
两个function在这里
1.]捕获 – 保存指纹
2.]匹配 – 在登录时匹配fingetprint
注意:它是我的应用程序中的代码块,您必须根据您的应用程序进行调整

上述就是C#学习教程:使用asp.net C#Javascript登录使用Finerprint的Asp.net Web应用程序分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—编程笔记

 byte[] bTemplateDataOne; byte[] bTemplateDataTwo; byte[] isoTemplateBytes; bool ErroFlag = false; int nTempltSizeOne; int nTempltSizeTwo; MMMCogentCSD200APIs csd200Obj = null; CSD200Wrapper wr = null; private void btnCapture_Click(object sender, EventArgs e) { try { int nRc = -1; byte[] fpRawBytes = null; int m_Width = 0, m_Height = 0; isoTemplateBytes = null; int nfiq = 0; pictCaptureImg.Image = null; pictCaptureImg.Refresh(); if (true == chkbCaptureOnly.Checked) { pbClaimed.Image = null; pbClaimed.Refresh(); bTemplateDataOne= null; nTempltSizeOne= -1; bTemplateDataTwo = null; nTempltSizeTwo = -1; rbClaimed.Checked = true; nRc = csd200Obj.captureFP(30000, ref fpRawBytes, ref m_Width, ref m_Height); if (nRc == CSD200APICodes.SUCCESS && fpRawBytes != null) { bmp = CreateGreyscaleBitmap(fpRawBytes, m_Width, m_Height); pictCaptureImg.Image = bmp; MessageBox.Show("Fingerprint Capture Successful."); } else if (nRc == CSD200APICodes.ERROR_TIMEOUT) { MessageBox.Show("Fingerprint Capture Timeout"); } else { MessageBox.Show("Fingerprint Capture Failed. ErrorCode: " + nRc); } } else { nRc = csd200Obj.captureFP(30000, ref fpRawBytes, ref m_Width, ref m_Height, ref nfiq, ref isoTemplateBytes); if (nRc == CSD200APICodes.SUCCESS && fpRawBytes != null) { bmp = CreateGreyscaleBitmap(fpRawBytes, m_Width, m_Height); pictCaptureImg.Image = bmp; if (rbClaimed.Checked == true) { pbClaimed.Image = bmp; if (isoTemplateBytes != null) { bTemplateDataOne= isoTemplateBytes; nTempltSizeOne= isoTemplateBytes.Length; } } else { MessageBox.Show("Try Again , Some error occured"); } MessageBox.Show("Fingerprint Capture Successful.n NFIQ: " + nfiq); } else if (nRc == CSD200APICodes.ERROR_TIMEOUT) { MessageBox.Show("Fingerprint Capture Timeout"); } else { MessageBox.Show("Fingerprint Capture Failed. ErrorCode: " + nRc); } } } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void btnMatch_Click(object sender, EventArgs e) { if (bTemplateDataOne != null ) { //DataTable dt = new DataTable(); //dt.Columns.Add("value"); //for (int i = 0; i  0 && ds.Tables[0].Rows.Count > 0) { for (int i = 0; i  0) { string msg = "Fingers are Matched." + Environment.NewLine; msg += "Welcome: " + ds.Tables[0].Rows[index]["Name"]; msg +="( id : " + ds.Tables[0].Rows[index]["id"] + ")" + Environment.NewLine + "matched value : " + matched; MessageBox.Show(msg); WriteFMRFile(nTempltSizeOne, bTemplateDataOne, strAppPath + "\One.fmr"); WriteFMRFile(nTempltSizeTwo, bTemplateDataTwo, strAppPath + "\Two.fmr"); } else { MessageBox.Show("Not Matched." + Environment.NewLine + "matched value : " + matched); } } else { MessageBox.Show("There is no fingerprint saved in the system"+Environment.NewLine+"Register someone first ."); } } catch (BioSDK710Exception cgtEx) { MessageBox.Show(cgtEx.ShowError(), "CogentBioSDK710 Error"); } catch (Exception ex) { MessageBox.Show(ex.Message); } } //else if(chkbCaptureOnly.Checked == true && (bTemplateDataOne== null || bTemplateDataTwo == null)) else if (chkbCaptureOnly.Checked == true && (bTemplateDataOne== null)) { MessageBox.Show("Please uncheck 'Capture Only' and recapture.", "Warning"); } //else if (chkbCaptureOnly.Checked == false && (bTemplateDataOne== null || bTemplateDataTwo == null)) else if (chkbCaptureOnly.Checked == false && (bTemplateDataOne== null)) { MessageBox.Show("Please capture fingerprints.", "Warning"); } } 


推荐阅读
author-avatar
赢在青春创业团队
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有