Gossamer Forum
Home : General : Perl Programming :

Passing variables

Quote Reply
Passing variables
I want to pass variables from a perl program to an asp program (using PerlScript). Does anyone know how to do this?

Thanks in advance
Patrick

Quote Reply
Re: Passing variables In reply to
use "perlscript" in the language line...

Use output variables in the script where you want to print values....like the following:

Code:

$output .= qq|HTML CODES|;


Then OUTSIDE of the closing > character, use the following codes:

Code:

<%output%>


Hope this helps.

Regards,