Click here to Skip to main content
15,887,350 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am developing a website in C# and ASP.net

My application demands of getting the class name from object name. For achieving this,
I have used a session object. The snippet is as follows:

Page1 .. (the one sending the session object)
C#
clsCountryMaster obj = new clsCountryMaster();
Session["myObject"] = obj;



Page 2 ...(the one receiving the session object)
C#
object masterobj = Session["myObject"];
e.InputParameters.Add("masterobj", (masterobj.GetType)Context.Items["masterdata"]);


I am getting the following error in Page 2.
The type or namespace name 'masterobj' could not be found (are you missing a using directive or an assembly reference?)

Can any body help me in this connection?

Thanks in advance.
Posted

You just can't do this (masterobj.GetType) and do a cast.
You need to know the class name.

If you just need to pass the object over to another method, an easier option for you is to use the object type directly.
e.InputParameters.Add("masterobj", (object)Context.Items["masterdata"]);
 
Share this answer
 
object masterobj = (object)Session["myObject"];
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900