Click here to Skip to main content
Sign Up to vote bad
good
See more: C#
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 8 Dec '12 - 20:34


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();
}
  Permalink  
Comments
Surendra0x2 - 9 Dec '12 - 2:46
Exactly :)
Krunal Rohit - 9 Dec '12 - 2:49
TY mate :)
ridoy - 9 Dec '12 - 4:00
+5
Krunal Rohit - 9 Dec '12 - 4:04
Thanks :)

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 449
1 Arun Vasu 253
2 OriginalGriff 210
3 CPallini 163
4 Aarti Meswania 158
0 Sergey Alexandrovich Kryukov 10,129
1 OriginalGriff 7,749
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 2,999


Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 9 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid