call my .dll from FrontPAge

L

L Peaker

I have a .dll that when given a value it will return an encrypted key.
I need to be able to call this function from FP. Can anyone tell me how I do
this.

I am using a form to get the relevent data I need and I wish to disply the
encrpted result on the form for the user also.

Any help is appriciated - Thanks in advance
 
M

MD Websunlimited

Hi L. Peaker,

First there are all types of dll files so I'm assuming yours is COM based and registered on the system in question.

Using VB in Classic ASP

set myObject = server.CreateObject("myobject.myident")

if IsObject(myObject) then
...... ' code to access the encrypted key method.
end if
 
Top