I'm currently looking for a good way to implement navigation between pages (without using any kind of dialogs) - particularly where a page is shared by more than one other page.
Example
There are three pages:
- ProductEdit
- OrderListItem
- ProductList
The ProductEdit page can be navigated to from both the OrderItemList and the ProductList pages.
The ProductEdit page has a cancel and an update action for it. When the user clicks one of these actions I need control to return back to the page it came from.
Multiple Levels
Any ideas on the best way to implement this. I also need to support this working at more than one level.
Related Posting This is all MVC3 related but is very similar to another StackOverflow posting: Web page navigation
Many Thanks!