The virtualpathprovider tag has no wiki summary.
1
vote
0answers
15 views
Using .NET MVC 4.0 VirtualPathProviders in a web farm scenario
We have an application that relies heavily on a virtual file system that extends the .NET System.Web.Hosting.VirtualPathProvider architecture.
We use chaining to search through...
...
0
votes
0answers
39 views
Cannot reference System.Runtime.Caching when page directive has attribute CodeFile instead of CodeBehind
I have a web application which uses a VirtualPathProvider to fetch pages and code files either from the database or from file. I believe I need to change the page directive's CodeBehind attribute to ...
0
votes
0answers
44 views
Troubleshooting custom VirtualPathProvider
I have just created a customized VirtualPathProvider for my ASP.NET web application. It basically maps all virtual files in "~/Storage" and subdirectories to a directory other than the solution's ...
0
votes
1answer
31 views
How do I get VirtualPathProvider to include page presenter and interface files?
I have implemented a VirtualPathProvider which fetches a page from a database.
This works ok for a simple application consisting of just one markup file (.aspx), its code file (.aspx.vb) and a master ...
0
votes
2answers
80 views
HostingEnvironment.VirtualPathProvider.FileExists returns false on existing file
I'm trying to read a file in a virtual path, using the following code
HostingEnvironment.VirtualPathProvider.FileExists(_SiteMapFileName)
_SiteMapFileName has something like ...
3
votes
1answer
110 views
Create virtual file path from stream
I have a general question concerning C# & Windows API:
My task is loading a file from a document management system (DMS) and create a byte array from this file. From the developer of the DMS I ...
0
votes
0answers
107 views
Cache Issue with virtualpath in ASP.net
We want to load different Default.aspx & Master.master base on querstring value ?t=template1.
Code is working fine when we return null in GetCacheDependency(). It perfectly show template1 or ...
0
votes
1answer
56 views
Implement virtualpathprovide and display date time from string in virtual file
I am very new to MVC and trying to impalement the virtual path provider, and displaying the date time on the screen.
The path works fine and recognized by application, however it will not display ...
0
votes
1answer
66 views
How to use EmbeddedResourceVirtualPathPovider with IIS6
While developing a ASP.NET MVC4 web application with VS2010, using the Mvc.JQuery.Datatables Nuget,
I found that the EmbeddedResourceVirtualPathProvider NuGet that is referenced, worked beautifully
on ...
0
votes
0answers
242 views
Is there any VirtualPathProvider working sample in mvc4 razor?
I have read dozens of related threads and made my very simple virtual provider from samples.
But it does not render virtual file stream. just showing plan text.
Here is the output.
@inherits ...
0
votes
1answer
77 views
VirtualPathProvider in Azure not working when published
I created a VirtualPathProvider to allow to move all the resources in a custom folder based on the Request.Host, to manage multiple domains with one web application.
On my local machine the MVC ...
0
votes
1answer
99 views
How to fake a directory listing in IIS? VirtualPathProvider works for file but
We're using AppFabric 1.1 & IIS 8.0 to run our xamlx based workflows. To make the static xamlx files go away we're used Ron Jacobs perfect sample code to store them in a database and serve the ...
0
votes
0answers
42 views
ApplicationSettings in Virtual Path provider loaded site
Currently working with VirtualPathProvider class to load a whole website from the database just like the one in here, also did the same thing to the applicationsettings of the web.config and moved ...
0
votes
0answers
45 views
VirtualPathFactoryManager loaded via IOC
I'm using MVC 4 and Autofac to create a multi-tenated architecture where each client has their own view engine.
I'm using razor generator to compile the views for each client into a separate dll.
I ...
0
votes
0answers
62 views
How to load some views from database, and others from files in MVC4
Im having a web application that loads _Layout and the normal page views from file, and I now try to load partial views from a database using a VirtualPathProvider and an overriden VirtualFile:
...
0
votes
0answers
154 views
MVC4 Project using VirtualPathProvider throws HTTP404
for themeing purposes, I'm doing the following steps:
1) Custom view engine derived directly from RazorViewEngine for making MVC search Views in custom locations. Works.
2) Custom virtual path ...
0
votes
0answers
152 views
Untraceable exception deploying webapp to Azure
I have made an ASP.NET MVC 4 application on my local computer, testing it with Visual Studio's embedded IIS server. All tests went OK. My application widely uses NHibernate and Spring. In fact the ...
0
votes
0answers
111 views
MVC Database Views with Controllers
About a year ago I asked a question about storing views in the database, I was having lots of issues but in the end I managed to do it.
I need to make a post on my blog to explain how I did it, but ...
1
vote
0answers
112 views
How to add a working aws S3 virtualpath provider for EpiServer pagefiles?
I'm running a EpiServer project where i want to take use of Amazon S3, to host images, etc... there will be alot of images that will exist from the pagefiles directory.
I've downloaded NuGet for ...
0
votes
1answer
247 views
Workaround for Bundling under Virtual Path Providers
I found that under ASP.NET MVC 4 you can't define a bundle of Javascripts or CSSs if their virtual path is managed by a VirtualPathProvider. I mean, if directory "~/Static/" is mapped to a VPP you ...
1
vote
0answers
127 views
Caching static resources returned via VirtualPathProvider
I'm using a VirtualPathProvider that currently maps a virtual path to a directory external to the solution. I'm building this mainly for self-exercise. This is totally equivalent of having a soft-link ...
0
votes
0answers
125 views
Registering a VirtualPathProvider with Spring.net
The straightforward question
I need to dynamically register a bunch of VirtualPathProviders that can be configured rather than hard-coded. Since I already use Spring I decided to use it.
The problem ...
1
vote
0answers
130 views
virtual view inheriting from System.Web.Mvc.ViewStartPage
I had an issue with when trying to retrieve virtual views from a file by means of VirtualPathProvider, which is described in this stackoverflow thread.
Now my question is why does a virtual view ...
1
vote
2answers
245 views
asp.net mvc virtual views and web configuration
There are many examples out there which show how to store and retrieve virtual views from a file or database, but none of them show how to configure root web.config so that the application works ...
0
votes
0answers
34 views
Using Javascript library from other project
I have two websites and in one of them I have some scripts that I want to use on the second website, I don't want to copy the .js files to the other projects, because if I had some change on the .js ...
0
votes
0answers
60 views
Get a list of all registered virtual path providers?
Is is possible to get a list of all registered virtual path providers of a specific type?
1
vote
1answer
230 views
VirtualPathProvider not parsing razor markup
I am using a VirtualPathProvider to load razor views from the database as discussed in this article.
The problem is when the view loads, the Razor markup is not being parsed. It is being rendered on ...
0
votes
0answers
73 views
Dropdownlist inside an user control when loading by virtual path provider, couldn't set the selected value
I've created a Web User Control that has some dropdownlist loaded dinamically.
It is working fine when used from the same project, but when I tryed to load it using VirtualPath Provider I got some ...
0
votes
0answers
105 views
“Portable” ASP.NET MVC Virtual SubFolder of ASP.NET 4.0 application linked as DLL
I have huge ASP.NET 4.0 web project (www.mysite.com), which is being implemented by huge team. It takes a while just to compile that project (it deploys itself to Azure Emulator).
I have to implement ...
0
votes
0answers
206 views
ASP.NET MVC 3 Cannot find _viewstart.cshtml when using plugin/embedded views
I'm trying out a plugin mechanism for ASP.NET MVC 3 (razor) using embedded views as described here, I changed the view engine to inherit from the RazorViewEngine, but otherwise didn't really change ...
0
votes
1answer
252 views
Loading non embedded views from other projects
I'm working on a mvc3 project which should support modules. So for example I have a MVC3 core project and a MVC3 module project (MyModule).
Now I wish to load and display the views from the MVC3 ...
0
votes
1answer
373 views
Implement a multiple web project structure in asp.net webforms
I'm working in a web application that has several areas of bussiness work. With time it's size has became a problem to develop on and to maintain.
I would like to break the web project into several ...
0
votes
0answers
253 views
Custom VirtualPathProvider and MVC OutputCache
We've created our own VirtualPathProvider (as described on this blog) to load our views from a different assembly.
We have a controller loading article details.
If a user requests an article that's ...
0
votes
2answers
1k views
Get the absolute server path(physical path) of file for FileInfo
I'm using an EPi server provider:
<add virtualPath="~/WorkplaceFiles/" physicalPath="C:\Temp Files\Workplaces"
name="workplaceFiles" ...
2
votes
0answers
365 views
VirtualPathProvider performance
I'm currently trying to create a class library and embed the MVC views in it so we can share it across multiple sites as explained here: http://www.wynia.org/wordpress/2008/12/aspnet-mvc-plugins/
...
3
votes
2answers
618 views
Using custom VirtualPathProvider to load embedded views that inherit a custom WebViewPage
Similar to this question I am using a custom VirtualPathProvider to retrieve views that are embedded in dlls. If I don't put @inherits System.Web.Mvc.WebViewPage on my view I get this error:
The ...
5
votes
1answer
337 views
Cannot debug EmbeddedResource views loaded via custom VirtualPathProvider
I have written a custom VirtualPathProvider (source here) which will return content from EmbeddedResources, or from the original file if it has been told where to find it (this allows you to edit and ...
23
votes
1answer
783 views
Could not find file PrecompiledApp.config when working with precompiled Razor views and VirtualPathProviders
We have an application using WebForms .aspx files for just about everything. Latley we have been using precompiled RazorViews as a way of getting nicley packeted functionality by simply dropping a new ...
2
votes
1answer
513 views
Override ASP.NET tilde (~) resolution just for images
I have a large legacy application, and I would like to move all of our images to a CDN.
Currently, all of our images reside under the application root itself, so the paths are all like ...
1
vote
1answer
143 views
Manipulating Directories and Images with Medium Trust .NET 2.0
This question:
Creating directories in medium trust environment?
Is kind of the same, but the answer didn't really help.
On my website, I have a bunch of product images held within a master ...
1
vote
1answer
92 views
Is there such a thing as a writable VirtualPathProvider?
I'm looking at using VirtualPathProviders to abstract away the accessing of files on the filesystem so that this could be easily swapped out to work with other services such as Amazon S3.
Whilst ...
1
vote
2answers
241 views
Caching MVC 3 views fetched from a database
I have a MVC3 application that is serving views stored in a database. I created a VirtualPathProvider and in my GetFile and FileExists methods I go to the database and return the correct thing. So far ...
2
votes
1answer
216 views
Vertical asp.net MVC organization and VirtualPathProviders
I'm currently working on a relatively large MVC project I would like to organize vertically.
Why break convention?
And, in more detail here
As far as implementation goes, the plan is a ...
0
votes
2answers
260 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 ...
2
votes
1answer
801 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
851 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 ...
14
votes
1answer
4k 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
165 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 ...
0
votes
1answer
425 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 ...
3
votes
1answer
1k 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) ...


