Hi!
Plz, give me a solution for my problem.
I created a DLL in Visual Basic 6.0.
There i defined a method named
EditRegistrationPersonalInfo() which take
10 parameters from Client(my client is ASP page). For this i defined a TYPE in DLL
Public Type registrationPersonalInfoType
intRegId As Integer
strLstName As String
strFstName As String
strMidName As String
....
....
End Type
Public Function EditRegistrationPersonalInfo(ByVal personalInfo As registrationPersonalInfoType) As RegistrationConstEnum
End Function
This works fine in
VB 6.0 project.
But i have written the DLL for ASP Client.
i want to pass 10 parameters from ASP page to COM component and COM component in turn add the values to Database Table.
How do i call the COM component(which have a user defined TYPE in COM componsent) from ASP page ???? OR is ther any way to do the same task.....