That would be something like...
Code:
out.println("<a href=\"case_detail_view.jsp\">Click here!</a>");
I think.
Also, you can end the JSP tags and write your HTML, and then continue the JSP after.
Like this:
Code:
<%
// stuff here
%>
HTML Stuff here
<%
// more JSP stuff here
%>