redirect problem

  • Thread starter Thread starter gauravkg via DotNetMonster.com
  • Start date Start date
G

gauravkg via DotNetMonster.com

i have twp pages add,and preview

i add page i am doing data entry
i preview i am previewing the data.

n preview have edit button iwant on clicking edit it should go back to add
page with the values of preview page how can i do it.
 
Put two panels on a single page pnlAdd and pnlPreview. You now have all of
the data you desire on a single page, but it appears to be two pages for the
user.

When the user clicks the button to "submit" (or preview) on the add page,
you hide the add panel and show teh preview panel. If he clicks the back
button on preview, you show the add panel and hide the preview panel. If he
clicks submit, you can show a third panel: pnlFinished that says he added to
the database.

That is one idea.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
Think Outside the Box!
*************************************************
 
Back
Top