Frank,
You might want to try:
<a href="delboard.jsp?BNAME=<%=URLEncoder.encode(names.getBoardName())%>">
The mailing list to check out is
jsp-interest and servlet-interest at [EMAIL PROTECTED]
you can lookup the answers at:
http://archives.java.sun.com
Hope this helps,
Abraham
-----Original Message-----
From: Frank Apap [SMTP:[EMAIL PROTECTED]]
Sent: Tuesday, December 28, 1999 6:31 PM
To: Orion-Interest
Subject: Some basic JSP/EJB questions
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...