Newbe Problem with parameter passing to href in jsp document.

V

Vladimir.Sakharuk

I am trying to pass 3 variables in jsp on tomcat 5.5. here is one of my
permutations.


<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page">
<jsp:directive.page contentType="text/html; charset=UTF-8" />

kill</a></li> <!-- this is line 28-->

</jsp:root>

I am getting exception
org.apache.jasper.JasperException:
/web/BlockingProcessDetail.jsp(28,18) The value of attribute "href"
associated with an element type "a" must not contain the '<' character.

Please advise thanks.
\/lad
 
V

Vladimir.Sakharuk

Have tried 2 permutations

suggested
<li><a
href="BlockingProcesses.jsp?id=<%=request.getParameter("id")%>&host=<%=request.getParameter("host")%>&action=kill">Kill</a></li>

<li><a
href="BlockingProcesses.jsp?id=<jsp:expression>=request.getParameter("id")</jsp:expression>&host=<jsp:expression>request.getParameter("host")</jsp:expression>&action=kill">Kill</a></li>

got:

org.apache.jasper.JasperException:
/web/BlockingProcessDetail.jsp(28,43) The value of attribute "href"
associated with an element type "a" must not contain the '<' character.
 
V

Vladimir.Sakharuk

Alex,
I am really appricaite your help.
Thanks.
Here it is:

<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:display="urn:jsptld:http://displaytag.sf.net">
<jsp:directive.page contentType="text/html; charset=UTF-8" />
<jsp:directive.page import="com.mis.b1usage.*" />
<jsp:directive.page import="org.apache.log4j.Logger" />
<jsp:include page="templates/navigation_header.html"/>

<style type="text/css" media="all">
@import url("menu2.css");
@import url("styles.css");
</style>
<jsp:include page="templates/navigation.html"/>

<jsp:declaration>
private static Logger logger =
Logger.getLogger("web.BlockingProcesses");
</jsp:declaration>

<div id="contentbox">

<h2>Blocking process</h2>
<ul class="rootlist">
<li>Host
<jsp:expression>request.getParameter("host")</jsp:expression></li>
<li>Process Id
<jsp:expression>request.getParameter("id")</jsp:expression></li>
<li><a
href="BlockingProcesses.jsp?id=<%=request.getParameter("id")%>&host=<%=request.getParameter("host")%>&action=kill">Kill</a></li>
</div>
</jsp:root>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top