Hi there!
Is there a way to update a variable created in a session from a DLL component ?
Look this code below:
<%
Dim myObject
Dim VartoUpdate
Dim dummy
VartoUpdate = 0
Session("var1") = VartoUpdate
Set myObject = Server.CreateObject("IF90Tel.class1")
dummy = myObject.Routine VartoUpdate
%>
In myObject.Routine the parameter VartoUpdate is declared by reference, in the ASP page it value is change at the end of the routine, but that what I want is change the value of var1.
Thank's for help.