I have the hyperlink products?categoryId=1
in the servlet doGet() method
I cant seem to get the value of the categoryId in the browser.
Do i have to use a form submission? I want to use a hyperlink
cant i do it like in asp.net
Response.redirect(products?categoryId=1);
You should use request.getParameter(String) instead.