Click here to Skip to main content
15,916,189 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have two files :
1. syllabusContent.jsp
2. syllabusRichTextEditor.jsp

The syllabusContent.jsp contains an form and I have an
HTML
<iframe>
element in the form as shown in the code below:
XML
<div>
Syllabus
    <iframe src="../syllabusRichTextEditor.jsp" width="1200" height="400"></iframe>
</div>


Now in my syllabusRichTextEditor.jsp I have the following piece of code:
XML
<textarea id="tinyeditor" name="syllabus" style="width: 100%; height: 200px">
    ${sessionScope.coreCoursesBean.syllabus}
</textarea>


So When I am trying to display the contents of the form it is not displaying the string contained in
${sessionScope.coreCoursesBean.syllabus}


secondly,
when I click on submit, I want even the syllabus entered in the textarea to be submitted to my servlet, which is not hapenning.

So basically I want to know how to communicate between two jsp`s?
Posted
Updated 13-Mar-14 20:29pm
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900