The browser itself never recovers...no error messages and the status bar stays at about half way...
If I take out the below section:
<ul type="square" id="consulList">
<%
while (choices.getString(1).equals("consulting"))
%>
{
out.print("<li><a href="emailer.jsp?viaName=<%=URLEncoder.encode(choices.getString(3))%>"> <%=choices.getString(2)%></a></li>");
}
%>
</ul>
and put in:
<ul type="square" id="consulList">
<li><a href="emailer.jsp?viaName=<%=URLEncoder.encode(choices.getString(3))%>"> <%=choices.getString(2)%></a></li>
</ul>
It does load the page correctly and bring me back one column value from my database. It just won't create a list with all of my values. This is why I tried to put the while loop in....
I'm a bit inexperienced at
jsp so I may be going down the wrong track trying to get this list to display....