posted 18 years ago
Hi Guys,
I have one problem. I have a header, footer, content page and navigation page. All the pages are combined into one page using
<body>
<table border="1" width="750" cellspacing="1">
<tbody>
<tr><td colspan="2"><tiles:insert attribute="header" /></td></tr>
<tr>
<td width="125"><tiles:insert attribute="navigation" /></td>
<td width="400"><tiles:insert attribute="body" /></td>
</tr>
<tr><td colspan="2"><tiles:insert attribute="footer" /></td></tr>
</tbody>
</table>
</body>
But using this link when i click one link, that page is displayed in body. but all the pages reloaded. my expectation is header and footer SHOULD NOT BE loaded. Only content page should be load.
So what is the problem of this? Can I over come this??? I think it's like HTML Frames.....
Thanks