Hi,
my project is based on VB6 Activex Dll , Activex Exe and ASP 3.0
In Activex Dll I'm storing Session ID in one variable.
How can I get the value (Session ID) stored in that variable in Activex Exe?
My code is as follows:
1) VB6 Activex Dll Code:
Public Function GetSession(ByRe f SessionID As String) As String
GetSession = SessionID
End Function
2) ASP Code:
<%
Dim SessionID
Dim objMyComponent
Set objMyComponent = Server.CreateOb ject("COMSessio n.clsSession")
SessionID = objmycomponent. GetSession(Sess ion.SessionID)
Response.Write SessionID
%>
3) Now, I want to write an Activex Exe to get Session ID in VB6 Activex Dll.
or Tell me the way to get Session ID in Activex Exe from ASP
Help me.
Thnks
Rajesh N.
my project is based on VB6 Activex Dll , Activex Exe and ASP 3.0
In Activex Dll I'm storing Session ID in one variable.
How can I get the value (Session ID) stored in that variable in Activex Exe?
My code is as follows:
1) VB6 Activex Dll Code:
Public Function GetSession(ByRe f SessionID As String) As String
GetSession = SessionID
End Function
2) ASP Code:
<%
Dim SessionID
Dim objMyComponent
Set objMyComponent = Server.CreateOb ject("COMSessio n.clsSession")
SessionID = objmycomponent. GetSession(Sess ion.SessionID)
Response.Write SessionID
%>
3) Now, I want to write an Activex Exe to get Session ID in VB6 Activex Dll.
or Tell me the way to get Session ID in Activex Exe from ASP
Help me.
Thnks
Rajesh N.
Comment