The index.html has two frames, sidebar on left and data on right
side bar has one jsp which has a form given like this,
<FORM ID='TARGETFORM' ACTION='welcome.jsp' TARGET='DATA' method='GET' STYLE='margin:0px;'>
<INPUT TYPE='hidden' VALUE='' NAME='hdnFormType' ID='FORMTYPE'>
<INPUT TYPE='hidden' NAME='hdnUser' VALUE='<%=strUser%>'>
<SELECT NAME='sltSalesOrder' onChange='vbscript:document.all("TARGETFORM").submit'..... on change of select option the data will be submitted to second frame "data" as the TARGET of form is defined as DATA. whenever there is change in select box option, I want to use the 'sltSalesOrder' value in the same jsp page in some
java code for passing it a method call like , how do I use the form variable in java code, otherwise after getting request.getParameter("sltSalesOrder) in second jsp of right frame, can I make use of this parameter again in 1st frame jsp.
boolean hasSAPDisjointInspectedParts = (chcec.evm.InspectedPart.getStatusInspectedPartCount(dbconn, status,
sltSalesOrder,"", 0))>0;