Link to home
Start Free TrialLog in
Avatar of francesluk
francesluk

asked on

Getting variables value from JSP

I've produced a simple flash UI with two text fields: modelName and sessionKey.

In the frame, I have this action script:
load variables("test.jsp",0);

In the jsp program, I have the body
<%
  out.print("modelName=Testing");
  out.print("sessionKey=1234567");
%>

But when I run the html file in browser, I can't see anything in the text files. The UI works fine with .txt file. Would anybody help?
ASKER CERTIFIED SOLUTION
Avatar of heddesheimer
heddesheimer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial