I know ASP.NET MVC 3 doesn't support area reuse, which would be very handy for, say, user admin areas of web applications, but how about partial views?
Say I have Pager "control" as a Razor
(or WebFormViewEngine
, it doesn't matter) partial view which I can easily reuse inside my MVC
application.
Is it possible to reuse it in multiple MVC applications other than by creating a partial view in the new application and copy-pasting the code?