Passing Session Variables in ASP.Net C#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 4 pages...
intro.aspx

<form method=post>
<input type="text" name="fname" id="fname">
</form>

purchase.aspx (page2)
Session["fName"] = Request.Form["fname"];

delievery.aspx (page3)


confirmation.aspx (page4)..
i want to display the
Session["Name"]...

i can pass it from page 1 to page 2....
but not to page 4..
sorry if this is an easy question
ciao...
:)
 
Back
Top