Is there any way to use something in BloggingNet (a blogging framework developed on ASP.Net Web Form Model) An asp.net MVC application? I want something where I just go to the blog engine. I can burn net site. I am convinced that the ASP.NET MVC framework will have to stop this call and try to root it on the index function of "blog controller". Is there a way around this or is it a non-issue?
Scott Hanselman wrote back at a time:
< / P>
But if I miss it correctly, if you do not have any controller who matches / blogs then the engine will send the default request to your / blog folder, and you Going up, as Scott's notes:
Why does ASP.NET MVC capture the request? two reasons. First of all, there is an option on the root option called Routexingfile. This is set to false by default, which, due to ASP.NET MVC, automatically leaves routing when a file is present on the disk.
However, he keeps in mind that you can only add to the following on your root definitions:
route. IgnoreRoute ("blog / {* pathInfo}");
Which all requests / blog /
Comments
Post a Comment