jo_luis
05-08-2003, 01:07 PM
I need to save a page on local disk which have 3 forms, and i need that the data in form will be saved to.
i have a script which save the page but not the data of the form,
here is the script
var isReady = false;
function doSaveAs(){
if (document.execCommand){
if (isReady){document.execCommand("saveas");}
}else{
alert('Feature available only in Internet Exlorer 4.0 and later.');
}
}
i have a script which save the page but not the data of the form,
here is the script
var isReady = false;
function doSaveAs(){
if (document.execCommand){
if (isReady){document.execCommand("saveas");}
}else{
alert('Feature available only in Internet Exlorer 4.0 and later.');
}
}