Here is the code in one of my frames that is not showing up when I check it in a browser. I can't even make the word Menu appear...Any ideas as to why it is not working?
<%@ page language="java" %> <%@ taglib uri="/WEB-INF/app.tld" prefix="app" %> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <html:html locale="true"> <head> <html:base/> <META name="GENERATOR" content="IBM WebSphere Studio"> <TITLE>Menu</TITLE> </HEAD> <BODY bgcolor="#ffffff"> <font face="Verdana" size="2"> <FONT size="+2"> Menu </FONT> <BR> <html:link forward="Main"> <bean:message key="Menu.Main"/> </html:link> <BR> <BR> <html:link forward="GeoZoneMaint"> <bean:message key="Menu.GeoZoneMaint"/> </html:link> <BR> <BR> <html:link forward="DomTransPointMaint"> <bean:message key="Menu.DomTransPointMaint"/> </html:link> <BR> <BR> <html:link forward="ForTransPointMaint"> <bean:message key="Menu.ForTransPointMaint"/> </html:link> <BR> <BR> <html:link forward="TransPointsRelMaint.jsp"> <bean:message key="Menu.TransPointsRelMaint.jsp"/> </html:link> <BR> <BR> <html:link forward="IDCDeptRelMaint.jsp"> <bean:message key="Menu.IDCDeptRelMaint.jsp"/> </HTML:LINK> </FONT> </BODY> </HTML:HTML> David Rothschadl <[EMAIL PROTECTED]> wrote: Hello, Is there anybody who has used frames within the Struts framework? Our frame set-up, which worked fine in our non-Struts HTML pages, is not working with Struts. Any working examples would be greatly appreciated! David Rothschadl

