ASP.NET Virtual Path Maps To Another Application Which Is Not Allowed

后端 未结 4 517
灰色年华
灰色年华 2021-01-11 11:17

I have a website that was building without any issue on multiple servers.
But, when I copy/move it on the same machine from one folder to another folder: I started getti

相关标签:
4条回答
  • 2021-01-11 12:01

    Additional check: Missing global.asax also causes the same error.

    0 讨论(0)
  • 2021-01-11 12:02

    If you are creating a new HttpContext and calling any external service, it also causes the same error.

    Key is you should not create new HttpContext, change the existing context to your needs.

    0 讨论(0)
  • 2021-01-11 12:09

    This isn't why your error happened but it may be useful to someone researching the problem who ends up here.

    If your web app is running as an application within another IIS site (set via the IIS administration tool) and is attempting to reach resources of the other site by means such as HttpResponse.Redirect, make sure the project isn't set to use a separate IIS in Visual Studio. If it is, it may be firing up inside a different IIS than the rest of the site.

    0 讨论(0)
  • 2021-01-11 12:12

    The source of this problem is that when one copies an ASP.NET Web Site to a new folder -- the properties setting associated with the solution "Virtual Path" is set to the folder name and not the root. The solution is to change the Virtual Path setting from the folder name to "/".

    This can be found by right click the project and opening the properties dialog: Solution->Properties->Virtual Path-> Change to "/"

    0 讨论(0)
提交回复
热议问题