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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling an ASP page from a perl script

Status
Not open for further replies.

egank

Programmer
Sep 12, 2002
4
US
I'm new to perl and am not completely familar with all of it's features.

I have an ASP page within my application that, upon submit, runs a perl script. At the end of the script, I want to call another ASP page that would add data to a database based on the results of the perl script processing. Is this possible with my perl script?
 
I was able to use the "print" command to achieve the desired results:

$myURL = "myFile.asp";
print "Location: " . $myUrl . "\n\n";

The only catch was that the print statement had to be the only print statement in the subroutinue.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top