vote up 0 vote down star
1

I'm required to include the last modified date on every page of my applications at work. I used to do this by including a reference to <%= LastModified %> at the bottom of my WebForms master page which would return the last modified date of the current .aspx page. My code would even check the associated .aspx.cs file, compare the last modified dates, and return the most recent date.

Does anyone know if you can read the FileInfo of a MVC View? I would like to include it in the master page, if possible.

I have a base controller that all wired up and ready to go. All I need to know is how to access the FileInfo of the current view.

namespace MyMVCApp.Controllers
{
    public abstract class SiteController : Controller
    {
        public SiteController()
        {
            ViewData["modified"] = NEED TO GET FILEINFO OF CURRENT VIEW HERE;
        }
    }
}
flag
There is no default view for controller. Controller can show any view calling View("view_name"). – Alexander Prokofyev Oct 7 at 5:06
Is the modified date purely coming from the .aspx's (the view's) last modified date? You could probably do something there but usually that sort of stuff (last modified date) comes from your persistent storage. Is your site not going to be database driven but more of a static site? – Charlino Oct 7 at 19:15

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.