Ver Mensaje Individual
  #9 (permalink)  
Antiguo 25/10/2005, 08:49
daenor
 
Fecha de Ingreso: diciembre-2004
Mensajes: 197
Antigüedad: 20 años
Puntos: 1
Código:
		  <!-- SOLAPA FINAL OFF -->
          
		  <!-- TRANSPARENCIA FINAL PARA GUARDAR ESPACIO -->
          <td><img src="../images/transparencia.gif" width="7" height="7"></td> 
        </tr>
      </table>
	  
  	  <!--  FIN DE TABS  SUPERIORES -->
	  
    </td>
  </tr>
  
  <!--  FIN ROW SUPERIOR ( TABS DE ARRIBA )  -->
  
  <!--  ROW CENTRAL -->
  
  <tr> 
    <td colspan="2" background="../images/fondo_b1.gif">	
      <table width="100%" border="0" cellpadding="0" cellspacing="0">
        <tr> 
		  <td width="1%" height="19"><img src="../images/transparencia.gif" width="7" height="7"></td>
          <% if(session.getAttribute("user")!=null)
			{%>
          <td width="2%" align="center"><a href='logged.jsp'><img src="../images/ico_home.gif" width="16" height="16" border='0' alt="Ir al Inicio"></a></td>
          <td width="0%" align="center"><img src="../images/spacer_toolbar.gif" width="4" height="13"></td>
          <td width="2%" align="center"><img src="../images/ico_print.gif" width="16" height="16" border='0' alt='Imprimir' onclick="window.print()"></td>
          <td width="0%" align="center"><img src="../images/spacer_toolbar.gif" width="4" height="13"></td>
          <!--<td width="2%" align="center"><img src="../images/ico_ayuda.gif" width="16" height="16"></td>
          <td width="0%" align="center"><img src="../images/spacer_toolbar.gif" width="4" height="13"></td>-->
          <td width="2%" align="center"><a href='LoginHandler?action=logout'><img src="../images/ico_logoff.gif" width="16" height="16" border='0' alt="Salir del Sistema"></a></td>
          <td width="0%" align="center"><img src="../images/spacer_toolbar.gif" width="4" height="13"></td>
          <td width="90%" align="left" class="texto3"><font color="white">&nbsp;<B><% out.print(username + " " +nombre_parentesis);%></B></font></td>
          <!--<td width="0%" align="center"><img src="../images/spacer_toolbar.gif" width="4" height="13"></td>-->
          <!--<td width="30%" align="center" class="texto3"><font color="white"><B><% out.print(username + " " +nombre_parentesis);%></B></font></td>-->
          <% } %>
          <td width="1%" class="fecha">&nbsp;</td>
          <td width="2%" class="fecha"></td>
		  
        </tr>
      </table>
    </td>
  </tr>
  
    <!--  FIN ROW CENTRAL -->
  
  
    <!--  ROW INFERIOR ( TABS DE ABAJO ) -->
  
  <tr align="right" valign="top"> 
    <td background="../images/fondo_sombra.gif">&nbsp;</td>
	<td background="../images/fondo_sombra.gif"> 
	
 	  <!--  TABS  INFERIORES -->
	
      <table border="0" cellpadding="0" cellspacing="0">
        <tr>
        <!-- TRANSPARENCIA PARA GUARDAR ESPACIO -->
          <td><img src="../images/transparencia.gif" width="7" height="7"></td> 
<%
	int j = 0;
	
	OpcionMenu inferior = null;
	
	for(; j < menuInferior.size() ; j++ )
	{
		inferior = (OpcionMenu) menuInferior.get(j);
		
		//Si es el primero
		if( j == 0 )
		{
			//Si el primero esta seleccionado
			if( inferior.getIdOpcion() == opInf )
			{%>
			<!-- SOLAPA INICIO ON -->
          	<td><img src="../images/solapa_d_a1_on.gif" width="26" height="25"></td>
			 <%
			}else //Si el primero no esta seleccionado
			{%>
			<td><img src="../images/solapa_d_a1_off.gif" width="26" height="25"></td>
			 <%	
			}
		}
		else //Si no es el primero
		{
			OpcionMenu anterior = (OpcionMenu) menuInferior.get(j - 1);
			
			if( anterior.getIdOpcion() == opInf  ) 
		    {%>
		    <!-- SOLAPA INTERMEDIO ON/OFF -->
          	<td><img src="../images/solapa_d_b1_izqon.gif" width="17" height="25"></td> 	
          	<%}
		    else if ( inferior.getIdOpcion() == opInf )    //Si es solapa OFF/ON
		    {%>
		    <!-- SOLAPA INTERMEDIO OFF/ON -->
          	<td><img src="../images/solapa_d_b1_deron.gif" width="17" height="25"></td> 	
          	<%}
        	else //Si es solapa OFF/OFF
        	{%>
		    <!-- SOLAPA INTERMEDIO OFF/OFF -->
          	<td><img src="../images/solapa_d_b1_off.gif" width="17" height="25"></td> 	
          	<%}
		}
		
		//Lo mismo para el texto. Si es el primero.
     	if( inferior.getIdOpcion() == opInf )
     	{ //Si esta seleccionado
     	%>
     	  <!-- TEXTO INTERMEDIO ON -->
          <td align="center" background="../images/fondo_d_on.gif" class="texto_D1">
          <a class="texto_D1" href="<%=inferior.getUrl()%>">
          <%
          out.print(inferior.getTitulo());%>
          </a>
          </td>
      <%}
     	else //Si no esta seleccionado
     	{%>
     	  <!-- TEXTO INTERMEDIO OFF -->
          <td align="center" background="../images/fondo_d_off.gif" class="texto_d2">
          <a class="texto_d2" href="<%=inferior.getUrl()%>">
          <%
          out.print(inferior.getTitulo());
          %>
          </a>
          </td>
      <%}// de este if
	}
	
	// Si existe la ultima opcion la agrego.
	// En caso de que el menu este vacio esta no existe ( NullPointer ).
	
	if ( inferior != null )
	{
	
		//Agrego la ultima solapa
	    if( inferior.getIdOpcion() == opInf )
	    {%>
	      	<!-- SOLAPA FINAL ON -->
	        <td><img src="../images/solapa_d_c1_final_on.gif" width="9" height="25"></td> 
	   <%}
	    else
	    {%>
	      	<!-- SOLAPA FINAL OFF -->
	        <td><img src="../images/solapa_d_c1_final_off.gif" width="9" height="25"></td> 
	  <%}
  	}
	
%>
		  
  		  
  		  <!-- TRANSPARENCIA PARA MANTENER EL ESPACIADO -->
          <td><img src="../images/transparencia.gif" width="7" height="7"></td>
        </tr>
      </table>
	  
   	  <!--  FIN DE TABS  INFERIORES --> 
	  
    </td>
  </tr>
  
      <!--  FIN ROW INFERIOR ( TABS DE ABAJO ) -->
  
</table>	<!-- Fin de Tabs secundarios de opciones -->
__________________
Diseñador y Desarrolador en Proyecto81 WebStudio