Reputation: 46641
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.
Upvotes: 3
Views: 2007
Reputation: 7432
It does this because it is in JS debugging mode. You're seeing the interpreted script of the page
Upvotes: 2