pass value to a page without query string or session

Using the reference in the PreviousPage property, you can search for controls on the source page and extract their value. You typically do this with the FindControl method.
use PreviousPage.FindControl("yourcontrolname")
these link may help you
How to: Pass Values Between ASP.NET Web Pages
PreviousPage Property

Comments