I have inherited an old set of classic ASP pages.
Pretty basic: Page 1 posts to Page 2... where it errors with an http 500 error.
I put this little block at the top just to see if I could even get this far:
<%
'--test
Response.Write "test"
Response.End
%>
Nada - same thing, http 500 error
It's been ages since I've done classic asp, so I've forgotten most of my debugging tips, but mostly it gets down to line-by-line sometimes. However, what I did above should at least display the string "test", but it won't.
Suggestions?