Can anyone help me - I am trying to submit a form to 2 frames in order that both frames (which are ASP pages) can do some validation against the database and display the required information. Presently I am using the undernoted function with the form submitting to the frameset page
function InfoPage(Select)
{
document.menu.Selection.value=Select;
document.menu.action = "sample.asp";
document.menu.target = "topframe";
menu.submit();
document.menu.action = "pdfframe.asp";
document.menu.target = "bottomFrame";
menu.submit();
return false;
}
however this is taking the required fields allowing the validation through and information to be displayed correctly but opening up two new windows and not displaying them in the frameset
Many thanks for any assistance
function InfoPage(Select)
{
document.menu.Selection.value=Select;
document.menu.action = "sample.asp";
document.menu.target = "topframe";
menu.submit();
document.menu.action = "pdfframe.asp";
document.menu.target = "bottomFrame";
menu.submit();
return false;
}
however this is taking the required fields allowing the validation through and information to be displayed correctly but opening up two new windows and not displaying them in the frameset
Many thanks for any assistance