0
votes
2answers
32 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 …
0
votes
2answers
35 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
{
…
1
vote
2answers
84 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 page …
0
votes
2answers
60 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 c …
0
votes
0answers
44 views
Anyone ever try this: Custom VirtualPathProvider (SQL Based) with SqlCacheDependency, SQL2005 and Service Broker?
I've been toying with the VirtualPathProvider the last couple of days and have gotten to the stage where I'm serving my aspx files from a SQL database but am stuck when it come to …
2
votes
2answers
359 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 …
3
votes
2answers
2k 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 …
1
vote
1answer
415 views
Compiling/Embedding ASCX templated UserControls for reuse in multiple web applications
Hi, 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, w …
1
vote
1answer
123 views
Is it possible to create a page from a string in ASP.Net?
Hi,
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 st …
1
vote
1answer
310 views
.NET VirtualPathProviders and Pre-Compilation
Hi,
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 …
