Skip to Content
0
Former Member
Feb 27, 2007 at 03:24 PM

JSP DynPages and Image Map

45 Views

Hello,

I've created JSPs with JSP DynPages. Now i vant to switch from one JSP to the other. How can I do this? This is my Code from the first JSP:

<%-- DHLICenter.jsp --%>
<%@ taglib uri= "tagLib" prefix="hbj" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
	<title>Ihre Auswahl</title>
	<head>
	
	</head>

	<body>
	<% String PublicURL = componentRequest.getWebResourcePath() ; %>
	<MAP NAME=map1>
		<AREA  HREF="page2.jsp" COORDS="350,270,460,330">
	</MAP>
	
		<img src='<%= PublicURL+ "/images/screen1.png" %>' usemap="#map1" border="0" />

	</body>
</html>

The Path for the Image works fine. But when i click the area i got an error message (iview not found). Can someone help me? Thanks in advance...