• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

want help in iframe

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
Let me first clear the subject. I have two frames in a jsp page. I want that I can see the contant of the first frame everytime. But content of the 2nd frame should change according to the first frame. I am using sturts frame work. when I go for submit button on the first frame it should change the contant of the 2nd frame accordingly. But at present instead of opening the same page it opens the Main page in the first frame only.

my config.xml file is

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">

<struts-config>

<!-- Data Sources -->

<!-- Form Beans --><form-beans>
<form-bean name="blankpForm" type="com.uboc.wpm.forms.BlankpForm">
</form-bean>
<form-bean name="recordForm" type="com.uboc.wpm.forms.RecordForm">
</form-bean>
<form-bean name="splitForm" type="com.uboc.wpm.forms.SplitForm">
</form-bean>
</form-beans>
<global-forwards>
</global-forwards>

<!-- Action Mappings -->

<!-- Message Resources -->
<action-mappings>
<action path="/blankp" type="com.uboc.wpm.actions.BlankpAction" name="blankpForm" scope="request">
<forward name="success" path="/JSP/BlankRecords.jsp">
</forward>
<forward name="failuar" path="/JSP/error.jsp">
</forward>
</action>
<action path="/records" type="com.uboc.wpm.actions.RecordAction" name="recordForm" scope="request">
<forward name="success" path="/JSP/RecycleRecords.jsp">
</forward>
<forward name="failuar" path="/JSP/SplitRecycledAternate.jsp">
</forward>
</action>
<action path="/split" type="com.uboc.wpm.actions.SplitAction">
<forward name="success" path="/JSP/BlankRecords.jsp">
</forward>
<forward name="failuar" path="/JSP/BlankRecords.jsp">
</forward>
</action>
</action-mappings>

</struts-config>


I want to know that what is the best way to deal with such problem. OR What can we do when we want first page same as it is in one frame and want second frame to be refreshed only according to the first frame.

Thanks and Regards
Mahesh Malviya
 
reply
    Bookmark Topic Watch Topic
  • New Topic