I am working on an asp.net web app with typically 30 different ScriptManager scripts referenced (as ScriptResource.axd?d=[encrypted-script-name] )
This makes it difficult to find the right script when debugging in e.g. firebug. It would be great if there was some way the original filename could be appended to the script url in debug mode, e.g.
ScriptResource.axd?d=[encrypted-script-name]&orig=MyScript.js
(I realise that this should be debug only!)
Is there a way to do it?
One of the way could be not to use
ScriptManagerto serve the scripts in say debug mode – for example