Thanks for replying. Okay, I got the image to display by this:
<img border="0" src="http://ichart.finance.yahoo.com/t?s=IBM" />
Obviously I misunderstood the c:import tag! However, the code samples I saw all seemed to use just the <c:import> in that fashion.
I was using this code from tutorialspoint.com
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title><c:import> Tag Example</title>
</head>
<body>
<c:import var="data" url="http://www.tutorialspoint.com"/>
<c:out value="${data}"/>
</body>
</html>
So, if I want to include the whole web page in my
jsp, what's the best way?
Thanks