You are viewing a plain text version of this content. The canonical link for it is here.
Posted to asp@perl.apache.org by "Jaime Iniesta :: RAILES.net" <ja...@railes.net> on 2006/12/05 13:05:52 UTC

ASP/VBscript

Hi, I'm new on this list, my name is Jaime Iniesta and I live in Madrid,
Spain.

I wanted to know if Apache::ASP lets you parse ASP/VBscript files on
Apache. I mean, will this page render on Apache::ASP?

<%
response.write "Hello, world!"
%>

Thanks!

-- 
Jaime Iniesta :: RAILES.net <ja...@railes.net>


---------------------------------------------------------------------
To unsubscribe, e-mail: asp-unsubscribe@perl.apache.org
For additional commands, e-mail: asp-help@perl.apache.org


Re: ASP/VBscript

Posted by Tom Haapanen <to...@motorsport.com>.
On 2006-12-05 07:05, Jaime Iniesta :: RAILES.net wrote:
> Hi, I'm new on this list, my name is Jaime Iniesta and I live in Madrid,
> Spain.
>
> I wanted to know if Apache::ASP lets you parse ASP/VBscript files on
> Apache. I mean, will this page render on Apache::ASP?
>
> <%
> response.write "Hello, world!"
> %>
>   
Not exactly -- Apache::ASP only does Perl syntax, not VBScript.  So you 
would need to do

<%
    $Response->write( "Hello, world!" );
%>

Tom

---------------------------------------------------------------------
To unsubscribe, e-mail: asp-unsubscribe@perl.apache.org
For additional commands, e-mail: asp-help@perl.apache.org


Re: ASP/VBscript

Posted by Warren Young <wa...@etr-usa.com>.
Jaime Iniesta :: RAILES.net wrote:
> Hi, I'm new on this list, my name is Jaime Iniesta and I live in Madrid,
> Spain.
> 
> I wanted to know if Apache::ASP lets you parse ASP/VBscript files on
> Apache. I mean, will this page render on Apache::ASP?

Do they not believe in reading FAQs in Spain?

	http://apache-asp.org/faq.html#VBScript%20or%2007fa600d

---------------------------------------------------------------------
To unsubscribe, e-mail: asp-unsubscribe@perl.apache.org
For additional commands, e-mail: asp-help@perl.apache.org