|
-
Oct 18th, 2003, 12:26 AM
#1
Thread Starter
Lively Member
Question mark in breakpoint...help
When i am debugging my ASP.NET application (thourgh vs.net), I set some breakpoints within a single method....but some lines of coding are breakpoint enabled, and others displayed with Question mark within breakpoint(breakpoint with warning!)...and giving tooltip message..."the breakpoint cannot currently be hit...no executable code is associated with it".
The code in with such breakpoint never gets executed (Even if I remove breakpoint)....This is a severe issue....getting in almost all of our computers..
The wonder is that, the succesfully enabled breakpoint is just above that of warning breakpoint.... and could be executed succesfully....but not the below one....and finally NO ERROR in any case...
please help me out to solve this problem....
-
Oct 20th, 2003, 09:25 AM
#2
Breakpoints like these usually appear:
On lines that generate no executable code, like pure variable declarations.
On lines that are not compiled, like code removed by #if...#endif.
On lines that are not loaded, like the source of a DLL that gets dynamically loaded at runtime.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|