Skip to Content
0
Former Member
Oct 07, 2005 at 01:59 PM

Iframes in Jsp

255 Views

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"

src="http://www.mygraphics.com/nbgint/NBG_INT_main.asp?action=CHART∏uct=INTERNET&size_x=300&size_y=300&result_frame=Results&default_centre_x=256000&default_centre_y=471000&default_width=21">

</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>