tags:

views:

49

answers:

1

Just wondering what the easiest way to connect 2 jsp pages together, I have one page and I need to have it link to another page when a customer clicks something. Now can I create a link like in html or do I need to make a button or something?

+2  A: 

you can just create a link specifying the url of the other jsp for example if other jsp is in same directory you could just use

<a href="b.jsp">Goto B</a>
objects
awesome just had to mess with the path a bit, thx dude!
javArc