I am building an ASP.NET MVC application which has a left navigation pane showing categories, and the remaining page uses the context of the selected category to do all actions.
When I navigate to the website with http://website/Home/Index?category=1&hideCategories=true i want to hide the navigation pane across all actions till that browser tab is closed. I want to show the navigation pane otherwise.
How can I achieve this while supporting the following scenarios,
- I want to open two browser tabs side by side with one browser tab always hiding the categories pane while the other browser tab always showing the navigation pane.