OK -- I'm working on a script. IE5.5 tells me 'error in line 66, object expected'. Problem is that I've modified my source so that line 66 is a comment & it's still failing. That tells me that my line number counting isn't the same as the browser's. Any idea how I can get to the right line to debug this sucker?
Announcement
Collapse
No announcement yet.
debugging - which 'line' is it?
Collapse
X
-
That's what I eventually did. By the way, I was counting each line in the source and discovered that IE didn't count 2 lines for a simple 'IF' statement:
Code:if ( test == "a" ) numL = 0
Thanks for replying.
Elsi
Comment
-
Re: debugging - which 'line' is it?
Originally posted by Elsi
OK -- I'm working on a script. IE5.5 tells me 'error in line 66, object expected'. ]
ASP did it's thing then sent it to your browser. Because many lines of the source were resolved into HTML, the source and the displayed page are different. "View Source" from the browser and you will see the offending line 66.
Comment
Comment