In ASP.NET MVC, what is the equivalent of ASP classic's server side includes?
Posted
by Quakkels
on Stack Overflow
See other posts from Stack Overflow
or by Quakkels
Published on 2010-05-07T16:44:48Z
Indexed on
2010/05/07
16:48 UTC
Read the original article
Hit count: 312
asp.net-mvc
|asp-classic
I have been developing in classic ASP for about 2.5 years and I am trying to update my skill set to include ASP.NET MVC.
What is the MVC way of executing SSIs? IE: How can I include a database drawn navigation list in a sidebar? I have been looking into partial views, but they seem to get their content from the controller. As far as I can tell this means that I would need to write each controller to pass the navigation list.
Am I thinking along the right lines?
© Stack Overflow or respective owner