forum

Home / DeveloperSection / Forums / Session in a class

Session in a class

Anonymous User 1812 02-Sep-2014

I have a class object where i m storing a list of questions in. I want to save this object in a session. I can do this:

JobApplication _application;
_application = new JobApplication(1);
Session["Application"] = _application;

i can also get the session by this:

JobApplication obj = (JobApplication)Session["Application"];

So, I want to pass in the class object( JobApplication _application;) into a class and set the session in the class and return a session. Can i set and get like i am doing?

but i would rather pass in the object into my session class and set it and get it from there.

I am not sure how to use sessions in get and set . 


Updated on 03-Sep-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By