Reputation: 47763
My ASP.NET WAP project in VS 2008 is set to debug=true in the web config The in solution's properties, all assemblies are set to option Debug in the Configuration Manager
I compiled and reran this site using IIS mode. Not sure why I still get this.
I set my debug to the firefox process.
Upvotes: 0
Views: 661
Reputation: 351626
Don't debug firefox.exe
- debug w3wp.exe
instead. The w3wp.exe
process is the worker process for IIS from your website's AppPool, this is the process that contains the AppDomain within which your assemblies are loaded.
The firefox.exe
process is running the browser itself.
Upvotes: 2