show/hide this revision's text 2 Corrected anser to actually state what to do, and link to an article with full code sample for doing this.
  1. You must register your VirtualPathProvider after you register your routeswithin the Global.asax Application_Start handler.
  2. You must call the view in your DLL using the special path like so: return View("~/Plugin/Admin/Admin.aspx")View("~/Plugin/YOURDLL.dll/FULLNAME_YOUR_VIEW.aspx");

Here's an article with downloadable code sample that demonstrates this:

http://www.wynia.org/wordpress/2008/12/05/aspnet-mvc-plugins/

show/hide this revision's text 1
  1. You must register your VirtualPathProvider after you register your routes
  2. You must call the view in your DLL using the special path like so: return View("~/Plugin/Admin/Admin.aspx");