Using GetDataFileContents()

msdfmap.ini without comments:
[connect default]
Access=NoAccess
;[sql name] will modify the Sql if ADC.sql="name(args)"

msdfmap.ini complete

;[connect name] will modify the connection if ADC.connect="name"
;[connect default] will modify the connection if name is not found
;[sql name] will modify the Sql if ADC.sql="name(args)"
;[sql default] will modify the Sql if name is not found
;Override strings: Connect, UserId, Password, Sql.
;Only the Sql strings support parameters using "?"
;The override strings must not equal "" or they are ignored
;A Sql entry must exist in each sql section or the section is ignored
;An Access entry must exist in each connect section or the section is ignored
;Access=NoAccess
;Access=ReadOnly
;Access=ReadWrite
;[userlist name] allows specific users to have special access
;The Access is computed as follows:
; (1) First take the access of the connect section.
; (2) If a user entry is found, it will override.

[connect default]
;If we want to disable unknown connect values, we set Access to NoAccess
Access=NoAccess

Contents of default.asp :
<%option explicit%>
<!-- The includefile is one level back from the "default.asp" file: -->
<!--#include file="../../jakes_IO.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="da">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Example use of the GetDataFileContents function</title>
    <link rel="stylesheet" type="text/css" href="/jake.css">
</head>
<body>
    <div align="center"><h1>Using GetDataFileContents()</h1></div>
    
    <!-- ***************    HERE IS WHERE IT HAPPENS!!     ****************** -->
    <b>msdfmap.ini without comments:</b><br>
    <div class="sample">
    <% response.write(stringToHTML (GetDataFileContents("msdfmap.ini", ";")))%>
    </div>
    <!-- ********************************************************************** -->
    
    <p><b>msdfmap.ini complete</b>
    <div class="data">
        <%=stringToHTML (GetFileContents("msdfmap.ini"))%>
    </div>
    
    <p><b>Contents of default.asp :</b><br>
    <span class="source">
    <% response.write(stringToHTML (GetFileContents("default.asp")))%>
    </span>

    
</body>
</html>