Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use Visual Studio 2010 to debug a asp.net MVC project in my local machine. The steps are:

Click Debug and try to attch process "w3wp.exe". However it is not in the list.

I am sure "Show processes in all sessions" is clicked.

share|improve this question
If you can't find w3wp.exe then IIS is not currently running. Make sure that the IIS Admin service is started, the WWW service is started, the application pool is started and the IIS website itself is started. – Joel Etherton Nov 19 '12 at 20:53
Are you using Local IIS (w3wp.exe) or VS Development Server (WebDev.WebServer40.exe)? Check under your Project Properties -> Web tab. – SliverNinja Nov 19 '12 at 20:56
Have you tried to check "Show Process From all Users" option? – Edward Nov 19 '12 at 20:56
Did you mean go to control panel then start IIS? I can't find it. – Love Nov 19 '12 at 20:58
In the attach to process window; are you running visual studio 2010 as administrator? blogs.msdn.com/blogfiles/jannemattila/WindowsLiveWriter/… the first option under the process list – Edward Nov 19 '12 at 20:59
show 1 more comment

1 Answer

up vote 0 down vote accepted

w3wp.exe won't show in the running process' unless there is actually an instance of the web application running.

Try to access your web page first, when it is displayed for the first time, try to attach your debugger. The process should now show up.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.