views:

183

answers:

1

When I run my solution, when certain parts of code are run such as logging in, I noticed that a node called "Script Documents" shows up under the solution node. Under script documents, it says Windows Internet Explorer and under that, various files show up, such as plain text files just named "anonymous code", javascript files, ScriptResource.asx?.... etc. This is happening in visual studio 2008.

+1  A: 

It does this because it is in JS debugging mode. You're seeing the interpreted script of the page

Josh E
How do I get it out of JS debugging mode or does it go away when you usually push to a live server?
Xaisoft
You'll only get it when the VS debugger is attached to IE, so if you aren't interested in debugging JS or whatnot, you can safely ignore it.
Josh E
As an addendum, if you don't want VS to attach to IE, you can manually go to Debug -> attach to process -> aspnet_wp.exe (for IIS sites) / Web Development server (port xxx) (for cassini)
Josh E