I have just started to develop an application in Visual Studio 2013 using MVC5. I am using the default MVC application, I have made no changes. I find that running the application works fine while in debug mode however if I Stop Debugging Shift F5 and change from on page to another or refresh my application in the browser I find that the connection to the localhost server is disconnected. I get a message Firefox can't establish a connection to the server at localhost: I have tested another application developed in Visual Studio 2012 and now running on VS2013 and it runs as expected out of debug mode. Has anybody else come across this problem. What am I doing incorrectly?
相关问题
- Custom controls disabled. There was an internal is
- Resharper 7 on VS2012 ignores assembly redirect in
- Error installing MVVMCross from nuget into a PCL
- Why can't I bind to winproc?
- Getting Sum of an SQL table column until the sum r
相关文章
- Web Test recorder does not allow me to record a te
- Why do I need a ToList() to avoid disposed context
- Visual Studio Hangs on Loading UI Library
- The program '[4432] iisexpress.exe' has ex
- Cannot implicitly convert Web.Http.Results.JsonRes
- How to disable CodeLens' references display in
- Breakpoint in ASP.NET MVC Razor view will not be h
- “Csc.exe” exited with code -1073741819
Do you have Edit and Continue enabled? (This can be found under your projects Properties -> Web, at the bottom.
When you have Edit and Continue enabled, the VS debugger attaches invasively to the web server process (IIS Express). When you stop the debugger, this kills the IIS Express process as well. If E&C is turned off, the debugger does not use an invasive attach, which lets the debugger stop without killing the attached process.