up vote 7 down vote favorite
share [g+] share [fb]

Are ASCXs still used in ASP.NET MVC or should we be using something else?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Yes, you can still use .ascx. They are often referred to as partial views.

link|improve this answer
feedback

You bet, I typically use an ascx to render a partial view for some type of ajax functionality. Although, as Jeffrey Palermo points out they don't add much value beyond the extension being a direct inclination that your are working with a partial view.

link|improve this answer
feedback

The great thing about them is that in your controller you can then use

return PartialView("MyPartialView", items);

This works great in a jQuery call when you are only interested in changing the contents of particular part of the page and not the whole page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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