Click here to Skip to main content
16,022,538 members
Please Sign up or sign in to vote.
1.11/5 (3 votes)
See more:
I need to convert these 2 pages to asp.net c# website

1.Delete.asp



<title>Delete fingerprint


<!-- BioPlugin ActiveX control to capture finger data -->

<OBJECT ID="BioPlugInActX" WIDTH=0 HEIGHT=0 CLASSID="CLSID:05E8280C-D45A-494F-AE42-840A40444AFF">
<param name="_Version" value="65536">
<param name="_ExtentX" value="2646">
<param name="_ExtentY" value="2646">
<param name="_StockProps" value="0">







Delete Fingerprint




Registration ID










2.) process-delete.asp


<title>Process-Delete

<%
'Incase web service throws an exception.
'on error resume next

dim objDoc, objSOAPClient
set objDoc = Server.CreateObject("Msxml2.DomDocument.3.0")
set objSOAPClient = Server.CreateObject("MSSOAP.SoapClient")
sPath = "http://localhost/bioplugin.asmx?wsdl"
objSOAPClient.ClientProperty("ServerHTTPRequest") = true
objSOAPClient.MSSoapInit(sPath)

if err.number <> 0 then
Response.write("

Web Service Call Failed!

")
else
dim xml
xml = objSOAPClient.DeleteID(Request.Form("ID"))

'Display

Response.Write "Code: " & xml & "
"

Response.Write("Go Back")

end if
%>


What I have tried:

I tried online tools ,not working
Posted
Updated 29-Jun-18 11:09am
Comments
Member 11307750 29-Jun-18 16:12pm    
1.Delete.asp



<title>Delete fingerprint


<!-- BioPlugin ActiveX control to capture finger data -->

<OBJECT ID="BioPlugInActX" WIDTH=0 HEIGHT=0 CLASSID="CLSID:05E8280C-D45A-494F-AE42-840A40444AFF">
<param name="_Version" value="65536">
<param name="_ExtentX" value="2646">
<param name="_ExtentY" value="2646">
<param name="_StockProps" value="0">







Delete Fingerprint




Registration ID

1 solution

There really is nothing special about this Classic ASP page set:

Page 1. There is no Classic ASP code presented; the ActiveX control is valid HTML as long as the browser is IE.

Page 2. Simple SOAP process for C#- thousands of code samples for this.

You may want to review the SDK for the Bio-Plugin, there may be a newer version available, and they probably have some code samples.

Did find a CodeProject article for this very SDK:
Fingerprint Reader Integration using the M2SYS SDK[^]
 
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