I would like to build a tabbed menu pretty similar to the profile management of StackOverflow.
tabbed menu StackOverflow http://img410.imageshack.us/img410/3037/image1nwr.jpg
When you take a look at the url, it said: /users/flesym?tab=stats or ?tab=prefs. I was able to create the tabbed menu, but I'd like to know HOW can I call an action method and display the result depending the selected tab.
I tried using a partial view. But as my page /users/flesym inherits from Mvc.ViewPage(myApplication.Models.User), I can't use another inheritance in my partial view (for example, I'd like to use Mvc.ViewUserControl(myApplication.Models.Format)).
Any thoughts on how to do it ?