Look this site I think this will help you lot
http://www.apache-asp.org/
Harry
Main Topics
Browse All TopicsTrying to get ASP to work on Apache but having a few problems.
Have Apache 1.3.19 running on NT
Have Perl installed with mod_perl and asp.pm
Apache works fine with cgi scripts.
When trying to view an ASP page, the script doesn't execute and I see the scipt code in the browser instead.
Have the following line in my httpd.conf file (as required).
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
If I add .asp to the AddHandler cgi-script .cgi in httpd.conf, I get the following error...
Forbidden
You don't have permission to access /aspSamples/hello.asp
on this server.
And the following in the error.log
[Wed May 16 11:09:08 2001] [error] [client 47.97.55.248] Options ExecCGI is off in this directory: c:/program files/apache group/apache/htdocs/aspsam
Am pretty sure mod_perl in installed correctly as I installed it using Win32 ActivePerl mod_perl ppms.
Think the problem may lie with Apache config.
Any ideas ??
Thanks,
Andy
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Look this site I think this will help you lot
http://www.apache-asp.org/
Harry
ADMINISTRATION WILL BE CONTACTING YOU SHORTLY. Moderators Computer101 or Netminder will return to finalize these if still open in seven days. Please post closing recommendations before that time.
Question(s) below appears to have been abandoned. Your options are:
1. Accept a Comment As Answer (use the button next to the Expert's name).
2. Close the question if the information was not useful to you, but may help others. You must tell the participants why you wish to do this, and allow for Expert response. This choice will include a refund to you, and will move this question to our PAQ (Previously Asked Question) database. If you found information outside this question thread, please add it.
3. Ask Community Support to help split points between participating experts, or just comment here with details and we'll respond with the process.
4. Delete the question (if it has no potential value for others).
--> Post comments for expert of your intention to delete and why
--> YOU CANNOT DELETE A QUESTION with comments; special handling by a Moderator is required.
For special handling needs, please post a zero point question in the link below and include the URL (question QID/link) that it regards with details.
http://www.experts-exchang
Please click this link for Help Desk, Guidelines/Member Agreement and the Question/Answer process. http://www.experts-exchang
Click you Member Profile to view your question history and keep them updated as the collaboration effort continues, to maintain your open and locked questions. If you are a KnowledgePro user, use the Power Search option to find them. Anytime you have questions which are LOCKED with a Proposed Answer which does not serve your needs, please reject it and add comments as to why. In addition, when you do grade the question, if the grade is less than an A, please add a comment as to why. This helps all involved, as well as future persons who may access this item for help.
To view your open questions, please click the following link(s) and keep them all current with updates.
http://www.experts-exchang
http://www.experts-exchang
http://www.experts-exchang
http://www.experts-exchang
**** PLEASE DO NOT AWARD THE POINTS TO ME. *****
------------> EXPERTS: Please leave your closing recommendations if this item remains inactive another seven (7) days. If you are interested in the cleanup effort, please click this link http://www.experts-exchang
POINTS FOR EXPERTS awaiting comments are listed here -> http://www.experts-exchang
Moderators will finalize this question if in @7 days you have not responded. They will either move this to the PAQ (Previously Asked Questions) at zero points, delete it or awarding expert(s) when recommendations are made, or an independent determination can be made. Expert input is always appreciated to determine the fair outcome.
Thank you everyone.
Moondancer
Moderator @ Experts Exchange
Business Accounts
Answer for Membership
by: prakashkPosted on 2001-05-17 at 08:01:49ID: 6091281
Try (this example is from the Apache::ASP documentation.
<Location /aspsamples>
SetHandler perl-script
PerlHandler Apache::ASP
PerlSetVar Global /tmp/asp
</Location>
Change the directory in the last line (PerlSetVar) to whatever you want.