ASP.NET Virtual Path Maps To Another Application W

2019-04-19 17:33发布

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 getting the error

The Virtual Path Maps To Another Application Which Is Not Allowed.

What am I doing wrong?

3条回答
你好瞎i
2楼-- · 2019-04-19 18:04

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

查看更多
祖国的老花朵
3楼-- · 2019-04-19 18:15

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 "/"

查看更多
虎瘦雄心在
4楼-- · 2019-04-19 18:25

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.

查看更多
登录 后发表回答