Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

We are having problems installing A

Status
Not open for further replies.

Johno2090

Programmer
May 3, 2002
31
0
0
GB
We are having problems installing ASP on an apache server when the asp page is viewed it brings up the code in the web browser without running the code for example

<%
Dim COunter

For Counter = 1 to 50
Response.write Counter & &quot;<br>&quot;
Next

%>

We have apache 2, Active Perl and Mod_perl installed
has any one got any ideas

cheesr
Chris

 
ASP is not a language. It is an API, which by default on IIS is implemented in a subset of VB.

Apache::ASP is a perl implementation an extended subset of the calls provided by ASP.

Your VB code isn't going to run until you port it to perl.

There is also Sun ONE Active Server Pages, which I believe actually implements the calls in VB on Linux with Apache. You're going to shell out ~$500 for it. Want the best answers? Ask the best questions: TANSTAAFL!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top