Right.. I've been doing this for 5 years, and I find Response.Write the quickest way to debug my code...
I'll commonly make a global variable called bDEBUG, and set it to false... then around my debug Response.Write statements, I put an IF statement. If bDEBUG is True, then it does my Response.Write.. this way I can turn it on and off without having to add and remove those lines every time.
Just an idea...