How To Pass A Parameter From Iframe To Iframe?
I have a parent jsp called parent.jsp. This spawns an iframe called iframe1, which in turn frames an iframe called iframe2 . From parent.jsp :
Solution 2:
You are not using the myNO variable but are specifying myNO as a string. Try this
createSecondIframe(myNumber)
{
ifrm.setAttribute("src", "iframe2.jsp?myNO=" + myNumber);
}
Post a Comment for "How To Pass A Parameter From Iframe To Iframe?"