Is there a way of submitting to more than one page but not at the same time? I want to create a preview window that allows the user to view a choice from a drop down list (Populated from a database). I want one button to submit just the value of the choice the user wants to preview and another button to submit all the information on the form. The preview also has to be in a new window not the one the form is in. I tried using this so far a combonation of ASP and Javascript.
let = document.cust_info.letters.value;
Win=window.open("preview.asp?letter=" + let,'Win','toolbar=no,status=no,width=300,height=300');
It reads the querystring but it just prints undefined in the new window.
Thank You in Advance
let = document.cust_info.letters.value;
Win=window.open("preview.asp?letter=" + let,'Win','toolbar=no,status=no,width=300,height=300');
It reads the querystring but it just prints undefined in the new window.
Thank You in Advance