Tagged Questions
15
votes
2answers
10k views
Using VirtualPathProvider to load ASP.NET MVC views from DLLs
Based on this question here and using code found here I'm trying to load views that are embedded resources in a separate DLL project, and the original question's author says he has had success doing ...
4
votes
1answer
203 views
ASP .NET VirtualPathProvider HttpCompileException
I have a VirtualPathProvider that is loading my aspx file content from a DB. All seems to be well and good except when my aspx file has a reference to a namespace or assembly that is not explicitly ...
2
votes
1answer
570 views
Configuring IIS 7 to handle static files through a Virtual Path Provider
I have a virtual path provider that serves static files from my virtual file system,is it possible to configure the IIS to server static files through my virtual path provider or do I need to create a ...
2
votes
1answer
635 views
Running a custom VirtualPathProvider with a PreCompiled website
currently I have a custom VirtualPathProvider in a Asp.net MVC web application.
This VirtualPathProvider checks the Area from the route "/{Area}/{Controller}/..." and uses the ...
1
vote
1answer
70 views
Can MVC route resolution mechanism be re-configured?
I have implemented custom VirtualPathProvider to serve customizable Views from a DB and when i put a breakpoint on the FileExists method I noticed that the framework does ton of unnecessary (for my ...
1
vote
0answers
251 views
asp.mvc 404 Error with Custom ControllerFactory and DBProvider
The app I am currently working on is an MVC3 app that combines standard view instantiation along with retrieving the view from a database if a physical view does not exist. I am running into a ...
1
vote
1answer
170 views
Static Files not getting routed with IIS the same as they are with Cassini
I have written a custom VirtualPathProvider for ASP.NET MVC 2 that searches assemblies for views and static content so that I can reuse content in multiple sites. It works just fine while using ...
1
vote
1answer
88 views
How to be able to select master pages that are provided by a VirtualPathProvider
We got a lot of intranet websites that share the same design. Therefore we've put the master pages, stylesheet, images and javascripts in a shared assembly.
The content is loaded by using:
...
1
vote
2answers
532 views
Asp.net MVC VirtualPathProvider views parse error
I am working on a plugin system for Asp.net MVC 2. I have a dll containing controllers and views as embedded resources.
I scan the plugin dlls for controller using StructureMap and I then can pull ...
1
vote
2answers
645 views
SharePoint, VirtualPathProviders and Application Restarts
Given that the only way to unload dynamically compiled assemblies (to reclaim memory) is to unload the app domain, how does SharePoint rely on VirtualPathProviders, for master pages and page layouts ...
0
votes
2answers
249 views
ASP.NET MVC, Custom VirtualPathProvider and IIS6
I have implemented my own VirtualPathProvider for loading 'embedded' views.
This works very well when running from Visual Studio, but I get the 'The view not found' message when running on IIS6.
Is ...
0
votes
3answers
562 views
ASP .NET MVC VirtualPathProvider
I am writing a VirtualPathProvider to dynamically load my MVC views, which are located in a different directory. I successfully intercept the call before MVC (in FileExists), but in my ...
0
votes
2answers
551 views
Reference problems when using VirtualPathProvider to dynamically load a view
I have the following set of classes that I used to dynamically load in a View. The code below works well when called with .RenderPartial.
public class VirtFile:VirtualFile
{
public ...