Posts

Showing posts from July, 2007

Visual Studio debugger extremely slow

I was struggling with this problem for nearly a day and a half, before I found the solution. Hence, thought I will blog this. The website I was developing was running extremely slow when run under debugger of visual studio. Initially I thought, it may be the slowness of webservices or the database components that we were using. But passing the value through the interfaces produced results quickly. hence I concluded that the problem was with my local website code. The fix was elusive and time was running out. I began deleting the files in bin directory and recompiled the code. still same effect. I deleted the project .suo file and eureka! the project started running correctly!!! I read some where that deleting .ncb file may help aswell.. Happy Debugging : )