Hi Al,
well my page displays fine in NN too, except it is not shoing a link. I mean the link is not available. It just displays as plain text, not as a link.
Thanks
This is my code.
<%@page contentType="text/html" import="java.util.*"%>
<html>
<head><title>Result for your selection</title></head>
<body>
<table width="50%" border="0" cellspacing="0" cellpadding="0" align='center'>
<tr>
<td><IMG src='/images/topbar1.gif'></td>
</tr>
</table>
<h1 align='center'><FONT color='green' face='helvetica'> <%=(
String)session.getAttribute("dept")%>'s department</font></h1>
<table width='80%' align='center' border='1'>
<%
int i = 0;
Vector v = (Vector)session.getAttribute("passingValue");
Iterator itr = v.iterator();
while(itr.hasNext()){
if ( i == 0){
out.println("<tr><th>Item ID</th><th>Item Name</th><th>Size</th><th>Manufacturer Name</th><th>Price</th></tr>");
i = i + 1;
}
out.println("<tr>");
String val = (String)itr.next();
StringTokenizer st = new StringTokenizer(val,"##");
while(st.hasMoreTokens()){
String itemID = st.nextToken();
String itemName = st.nextToken();
String itemSize = st.nextToken();
String manuName = st.nextToken();
String price = st.nextToken();
out.println("<td><A HREF='showDetails?selValue="+itemID+"'</A>"+itemID+"</td><td>"+itemName+"</td><td>"+itemSize+"</td><td>"+manuName+"</td><td>"+ price+"</td></tr>");
}
}
%>
</table>
<%-- <
jsp:useBean id="beanInstanceName" scope="session" class="package.class" /> --%>
<%-- <jsp:getProperty name="beanInstanceName" property="propertyName" /> --%>
</body>
</html>