For "static" aspx files, you need to include a route (or use catch all by default) something like this:
public SomeAction ActionResult(string pageName) { return View(pageName); }
And this should allow someone to make presentations in the appropriate folder, and then add them and execute them on the fly.
Wyatt barnett
source share