Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am doing the application in asp.net from default.aspx page value to go to default2.aspx through session how to do?


Design as follows in default.aspx

Name Dropdownlist 1

Id Dropdownlist2

HRA Textbox1 4000

DA Textbox2 2000


Design as follows in default2.aspx

Id dropdownlist1

HRA Textbox1

DA Textbox2


in default2.aspx i want the HRA and DA amt as 4000 and 2000 from default.aspx.

when i click the ID (dropdownlist1) in the default2.aspx i want to retreive the amt of 4000 and 2000 from default.apx .

for that how to write the code through using session.

in asp.net page.please help me.use session only.
Posted

1 solution

Default1.aspx :
Session["HRA"] = TextBox1.Text;
Session["DA"] = TextBox.Text;

Default2.aspx :
if("ID" == dropdownlist1.SelectedItem.ToString())
{
   hraLabel.Text = "HRA Value : " + Session["HRA"].ToString();
   daLabel.Text = "HRA Value : " + Session["DA"].ToString();
}
 
Share this answer
 
Comments
Surendra0x2 9-Dec-12 2:46am    
Exactly :)
[no name] 9-Dec-12 2:49am    
TY mate :)
ridoy 9-Dec-12 4:00am    
+5
[no name] 9-Dec-12 4:04am    
Thanks :)

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