I've created a Custom Control and added it to my aspx page.
The Control works, it contains .js files, the .js files are included in an .resx file and added to the assembly. I've build in debug and published all to my website.
I am unable to debug however, step into the source .js files. I've attached the source project to the IEXPLORER process and no go. I have confirmed that the correct assembly, containing my .js files is being used, I introduced an error.
What could be the problem? why can I not step into or set breakpoints in the source files of my Custom Control assembly?
If I add the .js files to the website and reference them differently in the .aspx file I can debug successfully.
<script src="javascript\Components.js" type="text/javascript"></script>