Problem passing variables between 2 pages
I have a aspx called page1 contains many textfields such as lastName, FirstName etc... and 2 button2. and all of them are runat server.The first button submits page1.aspx to itself and do some processing and set
lastName.text ="Something" and
firstName.text = "Something".
After processing, I click second button to post to page2.aspx by javascript ( I dont want to use querystring, Server.Transfer() will be last last option)
In the page2.aspx, I could not see any values of textboxes in the first page although the method is post. Any help would appriciated
John
|