| <%
| Application.Lock
| Application("strDate") = Now
| Application("CountVisitors") = Application("CountVisitors") + 1
| Application.Unlock
| %>

That's VisualBasic script, Apache::ASP scripts are written in Perl:

<%
    $Application->Lock();
    $Application->{"strDate"} = time;
    $Application->{"CountVisitors"}++;
    $Application->Unlock();
 %>

Read Joshua's manuals at http://www.apache-asp.org. However, I have a VB to
Perl converter module is reaching alfa stage, but it takes a little more
time to finish than I expected, mainly because of the huge amount of other
work I have to do at the moment.

Ime

Reply via email to