Home All Groups Group Topic Archive Search About
Author
23 Aug 2006 7:59 AM
gauravkg via DotNetMonster.com
i have two pages
in first.aspx
i have a data entry form .
in that i have a preview button it takes me to previw.aspx

on preview.aspx i have edit button . i want that on clicking edit button it
goes back to first.aspx with same values how can i do it..


Author
23 Aug 2006 8:52 AM
Riki
"gauravkg via DotNetMonster.com" <u25584@uwe> wrote in message
news:65304460742a4@uwe...
>i have two pages
> in first.aspx
> i have a data entry form .
> in that i have a preview button it takes me to previw.aspx
>
> on preview.aspx i have edit button . i want that on clicking edit button
> it
> goes back to first.aspx with same values how can i do it..

The easiest way in ASP.NET is to make it only one page with 2 panels,
Panel1 is visible, Panel2 is not visible.
On clicking preview, you make Panel2 visible.
On clicking edit, you make Panel1 visible.
Since it is only one page, all the values will still be there.

--

Riki