Reputation: 5434
I'm trying to debug a problem where my local IIS has mysteriously decided to not recognize my virtual directory.
In my MVC 4 project, my web server is set to "Local IIS" and my project URL is set to http://localhost/MySite
. When I hit the Create Virtual Directory
button, I get the message "The virtual directory was created successfully."
But when I go IIS Manager and click on Default Web Site | MySite | View virtual directories
no virtual directories are listed. This is also the case for the web site where the virtual directory does work.
Why can't I see a virtual directory created in Visual Studio 2013
for Local IIS in IIS Manager
?
Where can I see the virtual directories created by VS?
Upvotes: 4
Views: 2117
Reputation: 26
Try one of the following:
Or:
http://localhost/applications/test
. Refresh IIS and it should work.Upvotes: 1