I have a problem - I'm trying to convert my ASP code to Perl code for use
with Apache::ASP on Win98. Currently I make Server.CreateObject calls fra
within my asp page that generates an html page for me.

The code is as below:
<%
Dim ASPLightningclogin
Set ASPLightningclogin = Server.CreateObject("WPRS303_CWP.clogin")
ASPLightningclogin.Execclogin
%>

Is below conversion the correct for Perl?
<%
my $ASPLightningclogin = $Server->CreateObject("WPRS303_CWP.clogin");
$ASPLightningclogin->Execclogin;
%>


This only generates a blank html page in my browser?
The ".htm" examples from site/eg directory works fine, but all ".asp" files
does not execute. I get an "Internal Server Error". Any idea what's wrong?

By the way I'm not a member of any discussion board - how do I get that? Do
I have to check in the discussion groups every day for any responds to my
question or do I recieve an e-mail?

I hope you are able to help me:)

Best Regards,
Jakob Vedel

Reply via email to