You "Don't need no stinkin' redirect!" Just pull your tile into your JSP for display, no redirects or external browser actions required. I skimmed through my old posts and think this is the code you're looking for:
<%@ taglib uri="/WEB-INF/tiles.tld" prefix="tiles" %> <tiles:insert definition="some.tiles.definition.name"/> Just customize the tiles.tld taglib line to your webapp's location. I used this on a project for error(.jsp) pages and index pages. Regards, David -----Original Message----- From: Lowery, Mat [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 1:53 PM To: [EMAIL PROTECTED]; Struts Users Mailing List Subject: RE: Can I use Tiles Def for 1st page accessed on my site? Here's how I did it: In your index.jsp, you have only one line: <jsp:forward page="home.do" /> And then the home.do (or whatever Struts action) loads the content that was previously in your 1st page. In other words, the page attribute above points to your Tiles-enabled page. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 11:31 AM To: Struts Users Mailing List Subject: Can I use Tiles Def for 1st page accessed on my site? I have a site where index.jsp is the first page users access. It contains some text, a link to go to a registration page, and a form for registered users to login. I have converted all other pages to be defined by Tiles definitions in an XML file. However, I cant figure out how or if I can convert index.jsp to a tiles definition and still get it display on a user's browser when they enter only the base URL for the website, i.e., www.chesh.com. Any suggestions? Or can this just not be done? Thanks! p.s. I am sure this is a very basic issue. I apologize. I am a web/struts/tiles newbie! Love Struts though!!! -- "NOTICE: The information contained in this electronic mail transmission is intended by Convergys Corporation for the use of the named individual or entity to which it is directed and may contain information that is privileged or otherwise confidential. If you have received this electronic mail transmission in error, please delete it from your system without copying or forwarding it, and notify the sender of the error by reply email or by telephone (collect), so that the sender's address records can be corrected." "The sender believes that this E-Mail and any attachments were free of any virus, worm, Trojan horse, and/or malicious code when sent. This message and its attachments could have been infected during transmission. By reading the message and opening any attachments, the recipient accepts full responsibility for taking proactive and remedial action about viruses and other defects. The sender's business entity is not liable for any loss or damage arising in any way from this message or its attachments." --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]