T
Terren
Is it possible to create an object in one jsp page and then use it in
another jsp page.
Basically
JSP 1
MyClass myObject = MyClass();
myObject.setsomevariable="XXXXXXXX";
JSP2
myObject.getsomevariable;
I want to use this object to keep information about a user that has log
in e.g. Username, rights etc
I am pretty new to jsp so I don't even know if this is the right thing
to do
another jsp page.
Basically
JSP 1
MyClass myObject = MyClass();
myObject.setsomevariable="XXXXXXXX";
JSP2
myObject.getsomevariable;
I want to use this object to keep information about a user that has log
in e.g. Username, rights etc
I am pretty new to jsp so I don't even know if this is the right thing
to do