In teh following code how do I pass the Vector from javascript to the java function (.jsp file is as follows) :
function display_onclick(pidStatus)
{
var index = 0;
index = pidStatus.get(0);
if (index == 0 ) {
alert("No Products");
}
Now in the javascript part I have this :
Vector pidStatus = (Vector)session.getAttribu
te("PID_IN
FO");
<td><input type="button" value="Dsiplay"
name="ReqSubmit" onClick="display_onclick(p
idStatus)"
></td>
Start Free Trial