in reply to how to call perl from asp
Have you considered using PerlScript in your ASP?
<% @LANGUAGE = PerlScript %> <% # Embed your Perl right into your page ... use Image::IPTCInfo; chdir('demo_images'); # ... # ... or if it needs to live seperately, # capture it's output and redirect it to # the browser. # This might be redundant: does STDOUT in # ASP go to the browser anyway? open XML, "-|" or exec "/path/to/your/script.pl" or die "Can't exec script.pl: $!\n"; $Response->Write($_) while <XML>; %>
If not, then ASPFAQ.com or one of the other ASP sites might be a better place to ask/look.
--k.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to call perl from asp
by walkacrossfire (Initiate) on Sep 22, 2005 at 18:33 UTC |