Tagged Questions
The virtualpathprovider tag has no wiki summary.
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 ...
9
votes
4answers
3k views
MVC3 + MEF and Razor Views inside Class Library
I have a composit MVC3 Razor application using MEF.
Everything goes fine if I am to deploy plugins as DLL files and views (cshtml) under the regular Views folder from the application.
But this is not ...
5
votes
3answers
1k views
Web Deployment Project: Publish without Precompilation
The Question
Is it possible to publish a web application project using a web deployment project without precompilation?
Notes
In order to split out web controls and pages into a separate assembly, ...
4
votes
1answer
628 views
ASP.NET MVC 2 VirtualPathProvider GetFile every time for every request
I am fresh in ASP.NET MVC framework. This is may be a silly question for you. Sorry about that.
I have implemented a VirtualPathProvider. The VirtualPathProvider reads the view from File system.
...
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 ...
4
votes
1answer
2k views
Compiling/Embedding ASCX templated UserControls for reuse in multiple web applications
I'm onto a real head scratcher here ... and it appears to be one of the more frustrating topics of ASP.NET.
I've got an assembly that implements a-lot of custom Linq stuff, which at it's core has ...
3
votes
2answers
171 views
ASP.net UserControl and AppDomain TypeResolve
I'm using a VirtualPathProvider to include usercontrols that are not available at compile-time.
Everything is working correctly except for the reference to the dll that actually contains the control.
...
3
votes
1answer
847 views
.NET VirtualPathProviders and Pre-Compilation
We've been working on an application that quite heavily relies on VirtualPathProviders in ASP.NET.
We've just come to put the thing on a live server to demonstrate it and it appears that the ...
2
votes
0answers
174 views
Strange behaviour when loading razor view from custom VirtualPathProvider (ASHX Source)
I get some strange behaviour when I load data via my custom VirtualPathProvider.
It might be important to mention, that I am trying to use this view as a layout.
public class MyVirtualPathProvider : ...
2
votes
1answer
89 views
VirtualPathProvider won't see requests because * filetype handler not set on asp.net development server
I am using a VirtualPathProvider to serve some resources from .dll's (plugins). In IIS one can change the filetype filter for the ASP.NET ISAPI filter to '*'. How can I do the same for the ASP.NET ...
2
votes
1answer
122 views
ASP.Net VirtualPathProvider and Visual Studio Intellisense
I'm hoping someone can help me out with this annoyance.
At work we have two independent website projects that share a common MasterPage. The MasterPage is embedded in a class library that both ...
2
votes
1answer
310 views
ASP.NET MVC Disable view caching in overridden VirtualPathProvider
I am doing some dev work using portable areas so I have an overridden VirtualPathProvider.
My public override bool FileExists(string virtualPath) seems to get called only every few minutes, ...
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
4answers
293 views
Custom VirtualPathProvider not being used in IIS6
I added the following lines to Application_Start method in global.asax:
var provider = new TestVirtualPathProvider();
HostingEnvironment.RegisterVirtualPathProvider(provider);
Yet the ...
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
260 views
Using custom VirtualPathProvider to load embedded resource Partial Views
I wrote custom VirtualFile and VirtualPathProvider implementations that are successfully obtaining embedded resources that are Partial Views.
However, when I attempt to render them it produces this ...
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
1answer
204 views
ASP.NET VirtualPathProvider with Static Files Issue
I'm running IIS 7.5 on Windows 7. My ASP .NET application uses a VirtualPathProvider. Most of the files (aspx pages) are returned and rendered fine by my VirtualPathProvider. Static files (css/images) ...
1
vote
1answer
350 views
Embedded resources when using virtual path provider
I have successfully created my own virtual path provider to load a user control embedded in an assembly. The problem I am facing is I cannot use any embedded string resource in MyUserControl.ascx:
...
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
2answers
491 views
MVC 3 Add-in View attempting to resolve _ViewStart.cshtml from Add-in
I've been scouring the Internet and learning how to enable an ASP.Net MVC 3 site to use MEF. The idea being to build a modular site, so we can expand features as needed. I have just about every ...
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
1answer
762 views
Problem with Master Page and Virtual Path Provider
I built a deployable master page into a dll and referenced it in multiple ASP.NET Web Applications using a virtual path provider. The problem I'm having is that this really confuses the source view of ...
1
vote
1answer
676 views
VirtualPathProvider on IIS 6 does not handle file stream caching correctly
I am working on a framework where .aspx and .master pages are embedded in an assembly, using VirtualPathProvider to route a url to a specific embedded resource.
Sample url: ...
1
vote
1answer
468 views
Custom VirtualPathProvider unable to serve URLs ending with a directory
As part of a CMS, I have created a custom VirtualPathProvider which is designed to serve a single file in place of an actual file structure. I have it set up such that if a file actually exists on ...
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 ...
1
vote
3answers
720 views
C# VirtualPathProvider Static-Pages
I've got a virtual path provider (VPP) that serves simple aspx pages.
The problem lies when I introduce static references such as *.css, *.jpg files, etc ...
I noticed my VPP is capturing these ...
1
vote
1answer
177 views
Is it possible to create a page from a string in ASP.Net?
I can create a page from a file with:
Page page = BuildManager.CreateInstanceFromVirtualPath(
virtualPath, typeof(Page)) as Page;
How can I instantiate a page from a stream or a string?
Thank ...
0
votes
0answers
43 views
How can we retrieve the ASP.NET code when adding controls dynamically to a Page?
I am wondering if there is a similar method to RenderControl(HtmlTextWriter) available on an ASP.NET control but that generates the ASP.NET code from the controls graph?
Let's consider the following ...
0
votes
2answers
66 views
Maintaining cache control property on a file when it is returned as Stream from VirtualPathProvider
I have implemented a VirtualPathProvider to return Theme files (images,css) for an Azure web site from the Azure CDN. It is working fine apart from one thing: the files that are coming from the CDN ...
0
votes
1answer
103 views
Using VirtualPathProvider to put Themes in Azure CDN
I'm trying to implement storing an Azure web site's Themes in the Azure CDN.
I've copied the files into the CDN retaining the folder structure as it was in the original App_Themes folder.
I've ...
0
votes
3answers
136 views
VirtualPathProvider doesn't (quite) work in production on IIS 7.5
I have been working on a project that has common bits of functionality, specifically I wanted to share the master file and related images/js/etc. To that end, the master page and its dependent files ...
0
votes
0answers
33 views
Pluggable file systems for asp.net mvc, vpp or not?
I'm working on a small CMS thingy and I want other developers to be able to create their own integration of any service available out there, for instance flickr, amazon s3 or what ever. Is the best ...
0
votes
1answer
60 views
VirtualPathProvider Not Working on Hosting Environment
My .Net project works fine on Local IIS7 (Windows 7 IIS7 x86). But it does not work on hosting environment (W2008 Server x64 IIS7). I can fully control hosting environment. But I could not locate the ...
0
votes
0answers
244 views
Dynamically load a Workflow
I want to dynamically load a workflow (xamlx). I load my WF from my DB. I also have my WF dependency assemblies in my DB.
To dynamically load my WF, I use a VirtualPathProvider.
My WF uses a ...
0
votes
0answers
92 views
ASP.NET App_Themes in CDN
I want to put App_Themes folder in CDN.
Is there is a way to support this in ASP.NET?
I tried it using VirtualPathProvider but it does not seem to work since I need directory listing and I don't like ...
0
votes
0answers
72 views
VirtualPathProvider parsing every link!
I have implemented a custom VirtualPathProvider and discovered that every LINK on the page requested is passed to the GetFile() method for parsing/compilation. This does not sound reasonable to me as ...
0
votes
1answer
82 views
VirtualPathProvider problem with content pages
I have a VirtualPathProvider that works fine with asp.net pages. It compiles in runtime and run everything well. But, when I try to open a page that contains asp:Content tags, I always getting:
...
0
votes
1answer
164 views
Load views from a cloud service using a virtual path provider?
Is it possible to use a virtual path provider to load views from a cloud service? For example if I have a site admin ui located under http://www.example.com/ui, I want to load the views from the ...
0
votes
1answer
336 views
asp.net VirtualPathProvider - clearing Cache using GetCacheDependancy problem
I'm using VirtualPathProvider to return virtual pages from a SQL Server table. This is working pk and the code in my VirtualPathProvider class file is below.
The problem I'm having is that when I ...
0
votes
1answer
109 views
asp.net VirtualPathProvider - no longer recognising physical files
I'm using VirtualPathProvider to return virtual pages from a database table and it's all working fine but the problem is that the site no longer recognises when a page exists physically rather than ...
0
votes
0answers
226 views
System.Web.VirtualPath implementation returns attachment, doesn't render
I have an implementation of a ASP.NET MVC 3 RC site where I load in parts of the site from external assemblies. I've written implementations for VirtualPath as well as VirtualFile that catches the ...
0
votes
1answer
275 views
ASP.Net, How to ignore the MasterPage does not exist error?
I am working on my CMS project based on ASP.Net MVC2, I have implemented my VirtualPathProvider and VirtualFile for my master page, to use a master page in db.
It works as below:
I indicate the ...
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
3answers
2k views
Reusable ASP.NET User Control Library : Virtual path provider or ascx/aspx copy?
I have a ASP.Net web application that I want to use as a reusable user control library in other web applications.
One solution for this problem is to use what Scott Guthrie has described here:
...
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 ...
0
votes
1answer
1k views
Virtual Path Provider disable caching?
I have a virtual path provider. Problem is its caching my files. Whenever I manually edit one of the aspx files it references the VPP doesn't pull in the new file, it continues to reuse the old file ...