Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/08/2013, 16:17
Avatar de Sumerio
Sumerio
 
Fecha de Ingreso: octubre-2009
Mensajes: 195
Antigüedad: 15 años, 5 meses
Puntos: 6
Pregunta Consulta de como pasar datos del Servlet a un iframe ?

Hola tengo una consulta, estoy programando con Struts2 y usando taglib, para pintar valores y tambien uso tag para hacer unas validaciones para mostrar y/o ocultar campos, asi:

Código:
<table>
<tr>
    <td colspan="6" class="tablasIn">
		<table width="1236" border="0" class="style14">
          <tr>
			<c:if test="${(beansCal02.flagBebidaHumana == true)}">
            <td>&bull; Bebida humana</td>
			</c:if>	
			<c:if test="${(beansCal02.flagVidaAcuaticaDulce == true)}">
            <td>&bull; Protecci&oacute;n de vida acu&aacute;tica (A. dulce)</td>
			</c:if>	
			<c:if test="${(beansCal02.flagVidaAcuaticaSalada == true)}">
            <td>&bull; Protecci&oacute;n de vida acu&aacute;tica (A. salada)</td>
			</c:if>

	    <c:if test="${(beansCal02.idColor == null)}">	
	  			--
	  	</c:if>
	  	<c:if test="${(beansCal02.idColor != ' ')}">	
	  		<s:hidden name="beansCal02.idColor"/>
	  		<s:label name="nameColorCal02"/>
	  	</c:if>			
        </table>
	</td>
  </tr>
</table>
Pero ahora lo tengo que hacer ese mismo proceso en iframe, alguien me puede aconcejar de como manejarlo.