ZVenue
ZVenue

Reputation: 5027

Collapsible panel - MVC3 - Razor

Whats the best approach to take if I want to include a Collapsible panel in a MVC3 web page. In a Non MVC3 page, it is as easy as to drag and drop an Ajax control from the tool kit. I want to get that same functionality in my MVC3 application.. Thanks in advance for the suggestions.

Upvotes: 0

Views: 11103

Answers (1)

Kieron
Kieron

Reputation: 27107

The AJAX Toolkit is built for ASP.NET Web Forms, while it may work using ASP.NET MVC, it's not really recommended.

I'd go with a, in my opinion, cleaner solution - try the jQuery Accordion.

I've used it in several MVC based sites, and hasn't let me down so far.

Upvotes: 3

Related Questions