I have a new requirement here.
I have written a perl program, which would be made as an executable with
perl2exe.
This executable should be downloaded and start executing and at the same
time
I want another IE browser window to be opened with a specific URL. Both
these events
should happen by a single click on a link in our intranet.
Currently I am simulating these separately:
1. Through web 'File Download' and selecting 'Open file from its current
location'.
The executable is basically a simple web server to run at the client machine
to
be communicating between the IE browser and a perl server running at a linux
instance on mainframe.
2. Then clicking on another link will open a new IE browser window with the
following
javascript code.
function openwin()
{
open('http://localhost:8008/', 'InfoClientwn',
'scrollbars=yes,width=780,height=540,status=yes,toolbar=no,menubar=no,locati
on=no');
return;
}
I am looking forward for all your guidance and suggestions.
Thanks,
Samy Rengasamy.