I am using embeded flash for displaying the camera video inside an asp.net project for passing the camera inf. I am writing variables from flash to the server using Tamper Data extension I know it is sending ok.
The problem is reading it with javascript. How can I? I'm trying to use JSP with the <%...%>
but I am not able to read it properly.
This is the code I am using:
document.getElementById("txtID").value = "<%=varActionServer.Value%>";
Where txtID
is a textbox and varActionServer.Value
is the value of the Server variable that I want.