Commenting code in ASP Classic
问题 The way I know of hashing out code within ASP Classic is <%-- --%> . Would this be correct? Or is there another way? 回答1: Use a single quote, like: ' This is comment ASP Classic uses the VBScript/Visual Basic language, and a single quote is commenting in that; <%-- is nothing (I am not 100% sure though). 回答2: Beside ' , you can comment lines in the old school way: REM Response.Write "Ignore this line" Which is same with ' Response.Write "Ignore this line" 回答3: Assuming you mean that you have