Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Debugging Going Funky

Status
Not open for further replies.

jfrost10

Programmer
Jun 3, 2001
2,004
CA
Hey guys,

Anyone encountered this before:

I'll be coding away, then I'll notice that a line of code that should give me a blue squiggly line underneath and an error warning doesn't. Then I realize that all debugging for typed items is gone (i.e. if I put something like
Dim a as integer =
it puts a blue squiggly uner the '=' saying it expects something. However, if I put
objNotDeclared.DoThis(This)
literallyin my code, I get no error, even though I have no object declared).

I've gone into the solution file properties and my Debug ASP.NET checkbox is checked. Any other thoughts? Do I maybe have a corrupt solution file/debug file/???

thanks,

D
 
Someone suggested deleting the MyProject.pdb file (found in the bin folder of your asp.net project) associated with your project and the re-building it.

I wiped out the contents of my bin folder and did a "build-->Rebuild Solution."

This worked for me when my ASP.NET application was getting funky.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top