Tagged Questions
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
90 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 ...
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 ...