你把你的弹出页面选择的值用request.setAttribute传过去,然后你在你的接收页面通过
<bean:define>去定义,然后赋值。
以一个字符串为例:
弹出页面:
   //当然如果你是用struts做,下面语句写在Action里面
   request.setAttribute("testStr","hello");
显示页面:
  <bean:define id="elment" property="testStr"/>
  <html:text property="text1" value="<bean:write name='elment'/>"/>