Click here to Skip to main content
16,023,339 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I can not pass a object in between two web pages name Default.aspx and Defult2.aspx . Do you help me??
Posted

1 solution

Its Simple Dude, Use Session Variable to Pass Data Between Multiple Pages, suppose you need to pass an object of Class classA from page Page1 to page Page2; then store the object in session in Page1 as shown below:
C#
  classA obj1=new classA();  //create object of classA
//code to set values in obj1
  Session["Data"]=obj1;  //store object in session variable

And to get that object in Page2, use code as shown below:
if(Session["Data"]!=null)
{
// Get value from Session  variable and cast it to its corresponding type
   classA obj= (classA)Session["Data"]; 
}
 
Share this answer
 
v2
Comments
Sandeep Mewara 24-Oct-10 4:57am    
PRE tags are for formatting code part and not the text that you write. Saw you doing this in all your answers. It's not readable if you do so. Please avoid.

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