Jakob Adeltoft wrote:
> 
> 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 looks about right, but to get more help on that, you might
try asking at: [EMAIL PROTECTED]

> 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?
> 

What's in your error_log for a bad request?  
Make sure the .htaccess in site/eg has Debug set to -2 or -3.  

> 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?
> 

Check out: http://perl.apache.org/#maillists

To develop in Apache::ASP, its necessary to know how to develop
in mod_perl generally.  

-- Josh

_________________________________________________________________
Joshua Chamas                           Chamas Enterprises Inc.
NodeWorks >> free web link monitoring   Huntington Beach, CA  USA 
http://www.nodeworks.com                1-714-625-4051

Reply via email to