Is there any way to put a jsp page that contains frameset, in template?

I tried the same but the page contents are included as it is, and not the pages 
included in frames.

--------------------template----------------

<template:insert template='/common/b2bPageTemplate.jsp'>
  <template:put name='title' content='Otto B2B Admintool' direct='true'/>
  <template:put name='header' content='/jsp/header.jsp' />
  <template:put name='content' content='/jsp/index.jsp' />
</template:insert>

--------------------template-end-----------

---------------------index--------------------
<HEAD>
<TITLE><bean:message key="ecatalog.admin.title"/></TITLE>
<script src="../script/index.js" language="JavaScript1.2" >
</script>
</HEAD>
  --------------------------------in index-------------------------------------
  <FRAMESET ROWS="81,*" FRAMEBORDER="NO" BORDER="0" FRAMESPACING="0" ID="fs1">
    <frame  frameName="Top" scrolling="no" src="header.jsp" marginwidth="0" 
marginheight="0" frameborder="0">
    <FRAMESET COLS="140,*" FRAMEBORDER="NO" BORDER="0" FRAMESPACING="0" ID="fs2">
      <frame  frameName="Left"   scrolling="no" src="sitemap.jsp" marginwidth="0" 
marginheight="0" frameborder="0">
      <frame  frameName="Main"   scrolling="no" src="welcome.jsp" marginwidth="0" 
marginheight="0" frameborder="0">
    </FRAMESET>
  </FRAMESET>
  <NOFRAMES>
    <BODY BGCOLOR="#FFFFFF" TOPMARGIN="0" LEFTMARGIN="0">
    </BODY>
  </NOFRAMES>
--------------------index-end--------------

any help will highly appreciated.


Reply via email to