jsp link...

Status
Not open for further replies.

Digital_Jedi

In Runtime
Messages
141
Location
Amarillo, Texas
Hello all!! I have a question.... I have two different pages... one calle case_view.jsp and another called case_detail_view.jsp... I would like to put a like on the first page that says click here and that takes you to the second page. how do I go about doing this?
 
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
 %>
 
Status
Not open for further replies.
Back
Top Bottom