Hi,
I am new to Portal develpment.So please bear with me if i ask you a stupid question :).
I have a created a DynpageJsp component and the Jsp has 2 Iframe tags.
First iframe has a src tag pointing external URL ,Second iframe is for the results from the first Iframe.
My problem is that the first iframe displays good and i can inzoom and uitzoom and finally when i select a building(It is a Graphics map of a city) i get a result in the form of xml in the explorer under the Iview.How can i get this result to present in good way.
<jsp:useBean id="myBean" scope="application" class="com.sap.test.bean.JSPBeanName" />
<hbj:content id="myContext" >
<hbj:page title="PageTitle">
<hbj:form id="myFormId" >
<iframe id="Nedbrowser" name="Nedbrowser" width="100%" height="100%"
frameborder="no" marginheight="0" marginwidth="0" scrolling="no"
style="position:relative; top:0; left:0; width:800; height:400; z-index:100; visibility:visible"
</iframe>
<iframe id="Results" name="Results" width="100%" height="100%"
frameborder="no" marginheight="0" marginwidth="0" scrolling="no"
style="position:relative; top:400; left:0; width:800; height:200; z-index:100; visibility:visible"
src="about:blank">
</iframe>
</hbj:form>
</hbj:page>
</hbj:content>