"The resource cannot be found" when I hit F5 in Visual Studio 2010
I have a .NET 3.5 web application that I am trying to run in my local development environment.
Every time I hit F5 to run the application, I get the following error:
Server Error in '/' Application.
The resource cannot be found.
Description开发者_开发百科: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /Default.aspx
Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3614
I am running Visual Studio 2010. This web application runs perfectly on our production server, but I can't seem to get it running on my local development box.
Any suggestions on how I can troubleshoot this?
Looks like it's looking for a local web server, because your URL is /Default.aspx. You might need to point it to the actual server.
精彩评论