ASP.Net navigation tabs like windows tab control

Posted by devphil on Stack Overflow See other posts from Stack Overflow or by devphil
Published on 2012-10-01T03:21:56Z Indexed on 2012/10/01 3:37 UTC
Read the original article Hit count: 196

I would like to have a webpage something like windows tab control. Each webpage does not lose the contents and data while moving between pages, postbacks, etc.

Here is the website design and my idea:

[Master Page]

"Fruits"  "Cars"   "Animals"  "Operators"
  • clicking on "Fruits" will forwards to "Fruits" page, and the same for other links (tabs)
  • The user works on "Fruits" page searching fruits, fill up some fields, etc.
  • The user then moves to "Cars" page and then builds up his own car by filling some fields, etc
  • and then the user goes back to "Fruits" page again -> the user sees the same page where she/he left on "Fruits" page.

Please suggest some good ways other than using javascript:history.go(-1). Is this possible to implement?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about ASP.NET