The <es:uriContent> tag is used to pull content from a URL. It is best used for grabbing text-heavy pages.
If you combine HTML pages with relative URL’s, you must fully qualify them to the correct host in each URL, or else images (on other resources) may not be retrieved properly by the browser.
<tagName attribute="value" />
id
Required (String) - The variable that holds the downloaded content of the URI.
uri
Required (String) - The fully qualified URI from which to get the content.
This example retrieves and prints content from a URL.
<es:uriContent id="uriContent" uri="http://www.bea.com/index.html"> <% out.print(uriContent); %> </es:uriContent>