vote up 1 vote down star

Duplicate:

How can I build a tabbed menu in ASP.NET MVC?


If you hover over the tabs of Stackoverflow, you'll see query strings like "?tab=hot", etc... I'm looking to do something similar, and could use some pointers:

  • How can I select tabs based off the query string in ASP.NET MVC?
  • Should I process this in a view, or in a controller?


flag

67% accept rate
Im not seeing this, Chrome and IE7. I moused over "Questions", "Tags", "Users". – Marc Jun 11 at 21:53
@Marc, because those aren't tabs. Look at Active, Featured, etc. – KingNestor Jun 11 at 21:54
Don't close this as "Belongs on uservoice" - that's just idiotic – 1800 INFORMATION Jun 11 at 22:12
1  
As talljoe points out, this is a duplicate of stackoverflow.com/questions/978025/… If you vote to close, use that as the reason (i'm out of close votes, or i'd do it myself). – Shog9 Jun 11 at 22:15
Just close it, I'll rephrase and re-ask now. – KingNestor Jun 11 at 22:15

closed as belongs on meta.stackoverflow.com by McWafflestix, Aiden Bell, bdukes, 1800 INFORMATION, KingNestor Jun 11 at 22:15

3 Answers

vote up 1 vote down

I don't know how they do it as I haven't seen the source code but you could do that easily just by adding a parameter to your action method. Something like:

public ActionResult Questions(int id, string tab) {
    //...
}
link|flag
vote up 1 vote down

See this discussion here: http://stackoverflow.com/questions/978025/how-to-build-a-stackoverflow-tabbed-menu-in-asp-net-mvc

link|flag
2  
So this question is a dupe.. – VVS Jun 11 at 22:01
vote up 0 vote down

Without looking my guess would be that the controller sets various pieces of view data and the view displays differently based on those.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.