J
Joe Kovac
Hi!
I have an edit page and a view page. When I edit I sometimes want to see
the results graphically in the view page. Therefore I use:
Response.Redirect("ViewPage.aspx");
Then I go back, using:
Response.Redirect("EditPage.aspx");
Coming back I don't have the view state of my edit page anymore (for
example clicked check boxes get reset). How can I avoid that easily? Or
must I use session variables for this use case?
Thanks
Joe
I have an edit page and a view page. When I edit I sometimes want to see
the results graphically in the view page. Therefore I use:
Response.Redirect("ViewPage.aspx");
Then I go back, using:
Response.Redirect("EditPage.aspx");
Coming back I don't have the view state of my edit page anymore (for
example clicked check boxes get reset). How can I avoid that easily? Or
must I use session variables for this use case?
Thanks
Joe