Is this possible???
When i call another web page i receive a value from it:
then i call a java function from the body tag:
The question is: is that possible to use the value from the second page to be an input for the java function?? how can i do it???
Tell me if i wasnt quite clear on this. Thanks in advance.
When i call another web page i receive a value from it:
Code:
//1st Page Session["nCam"] = camLenght;
Code:
//2nd page -> receive the value from the first page on Page_Load() int nCam = Convert.ToInt32(Session["nCam"]);
Code:
<body onload="MontagemCamaras()">
Tell me if i wasnt quite clear on this. Thanks in advance.
Comment