jonsteng
04-12-2007, 08:05 AM
I have a cgi page with perl script where a user will enter search critera to retrieve a file from a unix file server.
The cgi page is hosted on the same unix server in apache.
I need to be able to either redirect or put a link, with parameters from their search criteria, to an external ASP.Net application (aspx web page hosted on a windows server under IIS).
I have been able to print a link using the following:
$dwgpdf = "<br><a href=http://webserver/app/>Click here</a><br>"
print $dwgpdf;
However clicking the link opens a page with an error that the page cannot be viewed. When I type the address directly into the address bar, it works fine.
Also tried printing redirect and location, but no fun there either.
Any suggestions greatly appreciated.
The cgi page is hosted on the same unix server in apache.
I need to be able to either redirect or put a link, with parameters from their search criteria, to an external ASP.Net application (aspx web page hosted on a windows server under IIS).
I have been able to print a link using the following:
$dwgpdf = "<br><a href=http://webserver/app/>Click here</a><br>"
print $dwgpdf;
However clicking the link opens a page with an error that the page cannot be viewed. When I type the address directly into the address bar, it works fine.
Also tried printing redirect and location, but no fun there either.
Any suggestions greatly appreciated.