Show index.asp syntax highlighted
<% use polsys; %>
<html>
<head>
<title>POL Server Performance Center</title>
</head>
<body>
<p>POL Internal Web Server</p>
<p>The purpose of the internal web server is to make it possible to manage the server from
remote, and to use scripts to do so. </p>
<p>The internal web server understands ".htm", ".html", and
".ecl" files. Only the "GET" method for forms works. </p>
<p>An example:<a href="online.ecl">Online Characters</a></p>
<%
foreach pkg in Packages()
if (pkg.supports_http)
WriteHtml( "<a href=\"/pkg/" + pkg.name + "\">" + pkg.name + "</a>" );
else
WriteHtml( pkg.name );
endif
endforeach
%>
</body>
</html>
See more files for this project here