Javascript debugging problem in ASP.Net

  • Thread starter Thread starter Jay
  • Start date Start date
J

Jay

I've noticed that after I made changes to a Javascript page
in an ASP.Net project, developed with VS2008, that
the page does not show the changes when being debugged.

The original page is ExpandPanel.js. During debugging,
ExpandPanel [Dynamic] comes up as expected, but a
line where I put a breakpoint is not present. Instead,
what is present, is the original script before I made
the changes.

Anybody else experience this, and / or know what
the problem is?

Jay
 
I've noticed that after I made changes to a Javascript page
in an ASP.Net project, developed with VS2008, that
the page does not show the changes when being debugged.

The original page is ExpandPanel.js.  During debugging,
ExpandPanel [Dynamic] comes up as expected, but a
line where I put a breakpoint is not present.  Instead,
what is present, is the original script before I made
the changes.

Anybody else experience this, and / or know what
the problem is?

Jay

Looks like a cache, try Ctrl+F5 or close and open your project again
 
Looks expected. Try to refresh the page (the script is just cached by the
browser) to see if it fix the issue.
 
Back
Top