"Castellon, Francisco" wrote:
> 
> Hello:
> 
> First of all, this is what i am running on.
> 
> Win98SE - Apache 1.3.20 - PHP 4.0.6 - Mod_Perl 1.25 - Apache::ASP 2.17
> 
> Ok now. I installed Apache using the CPAN.
> Now i have to configure apache's httpd.conf file. This is what i was told to
> add:
> 
> # The following is for Apache::ASP
> Alias /asp/ "/Apache/asp/"
> <Location /asp>
>    Sethandler perl-script
>    Perlhandler Apache::ASP
>    PerlSetVar Global /Windows/tmp
> </Location>
> 

Check out http://www.apache-asp.org/install.html#Quick%20Start
for directions on getting the ./site/eg example scripts to run

For a quick config, try also:

<Files ~ (\.asp)>
    Sethandler perl-script
    Perlhandler Apache::ASP
    PerlSetVar NoState 1
</Files>  

comment out the NoState line when you want $Session & $Application
defined for your scripts.  At that point you might want to read
up on state configs at http://www.apache-asp.org/config.html#State%20Management

> <br>You are going to Dynamically build this page from the ASP Server<br>
> <%
> Response.Write "Hello World"
> %>

This is VBScript & Apache::ASP currently only support perl scripting,
so the above would be:

<%
  $Response->Write("Hello World");
%>

-- Josh

_________________________________________________________________
Joshua Chamas                           Chamas Enterprises Inc.
NodeWorks <- Web Link Checking          Huntington Beach, CA  USA 
http://www.nodeworks.com                1-714-625-4051

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to