link to servlet
Hi, i have 2 links that load a servlet, i want to difference them in the servlet, i mean i want the servlet know which was the link that called him......i was trying to use the id attribute in the link...but i cant figure out how to use it in the servlet....is there any other way to do it?
<a href="/myservlet" target="marcoder" id="reg">
Do something
</a>
<a href="/myservlet" target="marcoder" id="reg">
Do something
</a>
protectedvoid processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException{
?
}

