我是ASP.net的新手。实际上,我想调试.net应用程序。我使用的是Windows7、Visual studio 2003(某些项目仅限于此版本)和IIS。
但是,当我单击调试->进程(显示所有进程)时,它列出的是WIN32类型的w3wp.exe,而不是.net。我想要.net类型的w3wp.exe进程。请帮我处理this.What,我该怎么做?
发布于 2013-09-16 19:59:41
您需要附加到aspnet_wp.exe进程
请尝试以下操作
1) From the Debug menu, select Processes. (You can also use Debug Processes from the Tools menu.)
2) Select Show system processes , find aspnet_wp.exe in the Process column and click it.
The aspnet_wp.exe process is the process that loads your code and displays it in Internet Explorerhttps://stackoverflow.com/questions/18827303
复制相似问题