Hi Savio,
Okay, sorry that I misunderstood you.
I think you can do what you want - as the matter of fact, I
used
Apache::ASP once as a "templating engine". It's
not exactly what you are
looking for, though...
What I know is that you can create an Apache::ASP instance
like
my $ASP = Apache::ASP->new($r);
where $r is - in this case - a mod_perl Apache request
object (I guess a
CGI object would also do). So in theory I *guess* you could
do something
like
use Apache::ASP;
use CGI;
my $r = new CGI;
my $asp = Apache::ASP->new($r);
my $Response = $asp->;
$Response->Write("Hello, World!");
...even though this looks rather ugly.
- Fagzal
>Well, thanks again,
>
>I am not trying to run an ASP script...!!
>I know how to do that...!!
>
>I know that the ASP objects are created for me once the
deelimiters are
>encountered!!
>I want to use the ASP objects from a perl script, I
want to use them
>raw. I hope you understand me now..!!
>
>Thanks anyways..
>Regards,
>Savio.
>--
>View this message in context: http://www.nabble.com/Calling
-%24Response-%3EWrite-from-perl-t1410025.html#a3840636
>Sent from the Apache - Asp forum at Nabble.com.
>
>
>--------------------------------------------------------
-------------
>To unsubscribe, e-mail: asp-unsubscribe perl.apache.org
>For additional commands, e-mail: asp-help perl.apache.org
>
>
>
>
------------------------------------------------------------
---------
To unsubscribe, e-mail: asp-unsubscribe perl.apache.org
For additional commands, e-mail: asp-help perl.apache.org
|