Embeds an iframe in the current JSP.
<dsp:iframe {page="page-spec" | src="page-spec" [otherContext="context"]}/>Attributes
page
Sets the page’s path and file name in two ways:
Resolves relative paths using the current page as a starting point.
Resolves absolute paths using the Web application root as a starting point by prepending the request object’s
context rootto the specified value.
src
Sets the page’s path and file name. The src attribute can access pages in another Web application if the current application’s web.xmlatg.dynamo.contextPaths parameter is configured appropriately, or if the otherContext attribute specifies the correct context path. For more information, see Invoking Pages in Other Web Applications.
otherContext
identifies a context path that is not specified in the application’s web.xml; valid with the src attribute.
Usage Notes
dsp:iframe lets you use an iframe in a page in the same way you use an iframe tag in an HTML page. Furthermore, you can set an iframe page to accept the page parameters from its parent page.
Note:dsp:iframe uses the iclass attribute in place of the cascading stylesheet class attribute to avoid using a Java-reserved word in Java code.
Example
<dsp:iframe src="GraduationAnnouncements.jsp"/>
The GraduationAnnouncements.jsp page is embedded in a parent page as an iframe.

