Hi, I have this problem:
I use some classes in my pages that I create using:
<% class MyClass
public function MyMethod()
end function
end class %>
I create an instance and store it on a session variable:
set session("MyClass") = New MyClass
so I can get the object in every page of my app, using:
set MyObj = Session("MyClass")
In the page I create the instance, I can acces the class methods with no trouble, The problem is that when I'm in another page ASP recognize the session variable as an object, but can't access the class methods.
What am I doing wrong?
Sorry about my engilsh.
Thanks.
Edited by Rafael_Luna