Access: gain access to the browser screen.
While running tests with compiled CGI executables, I couldn't get text in the browser screen in a reliable way. So I had to revert to:
Access: the source.
MODULE access;
FROM InOut IMPORT WriteString, WriteLn;
BEGIN
WriteString ("Content-Type : text/plain");
WriteLn;
WriteLn;
WriteString ("Hi there, this is my text.");
WriteLn
END access.
Access: how it's invoked.
Below is part of the HTML source to enable you to see these magnificant words on screen.
<h1 class="center">
If you want to see what it does, just
<a href="http://verhoeven272.nl/cgi-bin/access" target="_blank">
run this file
</a>
<br>
by clicking the underlined section. ;o)
</h1>
I did some tests with the invoking mechanism. This is a very picky mechanism. It needs to know several things.
This example is based on a CGI executable that resides on a remote webserver.
Page created at September 4, 2004.
Page equipped with FroogleBuster technology