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 ...
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
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
848 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
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
123 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
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 ...
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
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
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
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
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
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
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
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:
...