0
votes
2answers
58 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
{
pu …
0
votes
Prevent asp.net mvc from generating URLs with subfolders
In your route class override the GetVirtualPath method having it add "../" to the beginning of the Url property of the VirtualPathData object returned by the base.GetVirtualPath call.
…
0
votes
JSON request failing because of line breaks, how to escape them?
You should be able to escape the line breaks by calling .Replace("\n","\n").
…
1
vote
asp.net mvc - constructing views completely off custom fields in DB
If you are able to use the Preview 2 of MVC 2 then you could accomplish this by inheriting from DataAnnotationsModelMetadataProvider, or ModelMetadata if you don't want the attribute based stuff at …
2
votes
How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7?
If you hosting provider supports the IIS7 URL Rewrite module then you could check out this link:
…
0
votes
How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7?
I found http://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routi …
0
votes
Why does my ASP.NET MVC application work from a virtual directory, but not from a website?
You likely need to grant read/execute permission to the files/folder that you are deploying to for the windows account that the App Pool of the website on the remote server is running under.
…
