Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Submiting to more than one page.

Status
Not open for further replies.

Gatorajc

MIS
Mar 1, 2002
423
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top