Is there an easy way to incorporate a JSP forward directive inside an html "<a>" (anchor tag)

I'm trying to do something like:

<td> <a <jsp:forward page = "MyFacility.jsp"/> > Test Three Forward</td>

but cannot get the syntax correct.

I'd like to have the "Test Three Forward" appear as the hyper-link and then forward to MyFacility.jsp when the link is clicked.

Thanks for any ideas!!

Mike

<td>
<a href="MyFacility.jsp">Test Three Forward</a>
</td>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.