I have ASP.NET application where I use MSScriptControl.ScriptControlClass to execute VBScripts. However, breakpoints ('stop') are ignored when Eval() function runs the script. I'd like to see JITDebugger triggered, which would allow me to use Microsoft Script Debugger to debug the script. Has anyone had similar issues?
EDIT: After some investigation I found that due to our IIS settings (we are using Windows Authentication) ASP.NET worker process runs as DefaultAppPool and does not have same privileges or registry set as logged on user. So I guess the question now is "How to change regsitry keys for DefaultAppPool user?"
EDIT2: I asked this question in separate thread and got an answer: How to change registry keys for DefaultAppPool?