Contents of default.asp :
<!-- 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 GetFileContents function</title>
<link rel="stylesheet" type="text/css" href="/jake.css">
</head>
<body>
<div align="center"><h1>Using GetFileContents()</h1></div>
<b>The poem:</b><br>
<!-- *************** HERE IS WHERE IT HAPPENS!! ****************** -->
<textarea cols="60" rows="8"><%=GetFileContents("poem.txt")%></textarea>
<!-- ********************************************************************** -->
<p><b>Contents of default.asp :</b><br>
<span class="source">
<% response.write(stringToHTML (GetFileContents("default.asp")))%>
</span>
</body>
</html>