I have been tasked with taking over management of a database interface. I cannot contact the original designer, but a lot of their ASP code has lines with multiple apostrophes ('). Below is an example.
Would there be a reason to use multiple apostrophes? I thought they only indicated comments, therefore a single apostrophe would do. Could this just be a way the previous person organized comments, or is there another reason?
<%
Option Explicit
%>
<%
Server.ScriptTimeout = 600
'Response.Buffer = True ' done in ***
'''Response.Buffer = False ' override
'''Response.AddHeader "Pragma", "No-Cache"
'''Response.AddHeader "Pragma", "No-Store"
'''Response.AddHeader "cache-control", "no-store, no-cache, must-revalidate"
'''Response.CacheControl = "no-cache"
'Response.Expires = 0
'Response.AddHeader "pragma", "no-cache"
'Response.AddHeader "cache-content", "private"
'Response.CacheControl = "no-cache"
'Response.AddHeader "cache-content", "private"
'Response.CacheControl = "no-cache, no-store, must-revalidate"
'Response.AddHeader "pragma", "no-cache"
'Response.Expires = 0
''Response.ExpiresAbsolute = Now() - 1