Hi I have some basic JSP/EJB questions.
1) Does anyone know any mailling lists for questions like these (ie basic
jsp/ejb questions) ?
2) How can I encode a String to be used in a url.
Right now my code looks like this.
<a href="delboard.jsp?BNAME=<%=names.getBoardName()%>">
what happens tho, is if getBoardName() returns a string with a space it
doesnt work.
3) What is the proper/best way to handle exceptions that might occur within
a jsp page? IE, if I have a create() statement that fails how can i catch
the exception within the jsp page.
Thanks...