buenoweb 7 Denunciar post Postado Julho 15, 2014 Estou com uma dúvida, já pesquisei na internet e nada encontrei. Tenho que fazer um projeto, aliás, está bem adiantado, mas quero fazer um esquema tipo frames, a exemplo de html. Outro exemplo seria o programa da receita, emn que na direita temos o menu e ao clicar, abre tudo na direita, entenderam? Compartilhar este post Link para o post Compartilhar em outros sites
rdpacato 2 Denunciar post Postado Julho 15, 2014 Estou fazendo isso bueno, segue ai de mão beijada: Menu: <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> Menu </title> <BASE href="home.html" target="principal"> <link rel='stylesheet' type='text/css' href='css/buttonMenu.css'> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <style> </style> <body> <a href="button1.html" style="text-decoration:none"> <div class="btnUltMedicao">Última Medição</div> </a> <a href="medicoesHistoricas.jsp" style="text-decoration:none"> <div class="btnMedHist">Medições Históricas</div> </a> <a href="home.html" style="text-decoration:none"> <div class="btnGrafGer">Gráficos Gerenciais</div> </a> <a href="home.html" style="text-decoration:none"> <div class="btnAnom">Anomalias</div> </a> </body> </html> Pagina principal: <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--[if lte IE 6]> <script type="text/javascript">alert("Sua versão de Browser está desatualizada");location.href='http://www.updateyourbrowser.net/pt'; </script> <![endif]--> <!--[if gte IE 7]> <script type="text/javascript">alert("Sua versão de Browser está desatualizada");location.href='http://www.updateyourbrowser.net/pt'; </script> <![endif]--> <!--[if gte IE 8]> <script type="text/javascript">alert("Sua versão de Browser está desatualizada");location.href='http://www.updateyourbrowser.net/pt'; </script> <![endif]--> <!--[if IE 9]> <script type="text/javascript">alert("Sua versão de Browser está desatualizada");location.href='http://www.updateyourbrowser.net/pt'; </script> <![endif]--> <html> <head> <title> Principal </title> <script type="text/javascript" src="http://updateyourbrowser.net/asn.js"> </script> <meta name="description" content="Tela inicial"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <frameset rows="8%,80%,4.3%" border="1" frameborder="1"> <frame name="head" src="header.jsp" noresize="no"> <frameset cols="17%,*"border="0" frameborder="0"> <frame name="menu" src="menu.jsp" noresize="no"></frame> <frame name="principal" src="home.jsp" noresize="no"></frame> </frameset> <frame name="foot" src="foot.jsp" noresize="no"> </frameset> </html> Compartilhar este post Link para o post Compartilhar em outros sites
buenoweb 7 Denunciar post Postado Julho 18, 2014 Valew, ma quero fazer dentro do programa em java. Compartilhar este post Link para o post Compartilhar em outros sites