Inside a classic asp page, I'm told that you can use vbscript or jscript. And jscript is just javascript.
So I'm not sure what the difference is between Response.Write, Response.Write(), response.write(), and document.write()
Does the capitalization matter, and sometimes I seem to see no parentheses after the method name, and sometimes I do. It's all devolving into a mess inside my newbie head.
If I'm writing classic asp using JScript (and not VBScript), should everything inside <% %> be considered javascript, just on the server side?
Prior to classic asp, I was sure that javascript was a client-side scripting language only.