carlosAlberto
IS-IT--Management
Hi,
I've got a headache more than a problem with scripting. At the minute i'm calling this function (shown at the bottom) and passing the cgi script several values.
The values are to be processed the i want to display another window (main.html). I'm having trouble finding how to display another window. Can i use a command that gives the source of the html page from within the script??? e.g. ./main.html
(i'm using tcl scripting, i know i can use puts "<body>.... but i don't want to do it that way)
--------Javascript submit function-----------
function saveProfile() {
deSelectList1();
selectAllList2();
document.forms[0].action ='/cgi-bin/carl/saveProfile.cgi';
document.forms[0].submit();
}
I've got a headache more than a problem with scripting. At the minute i'm calling this function (shown at the bottom) and passing the cgi script several values.
The values are to be processed the i want to display another window (main.html). I'm having trouble finding how to display another window. Can i use a command that gives the source of the html page from within the script??? e.g. ./main.html
(i'm using tcl scripting, i know i can use puts "<body>.... but i don't want to do it that way)
--------Javascript submit function-----------
function saveProfile() {
deSelectList1();
selectAllList2();
document.forms[0].action ='/cgi-bin/carl/saveProfile.cgi';
document.forms[0].submit();
}