标签: jsp servlets
我有超链接products?categoryId=1
products?categoryId=1
在servlet中的doGet()方法
我似乎无法在浏览器中获得categoryId的值。 我必须使用表单提交吗?我想使用超链接 我不能像在asp.net中那样做。
Response.redirect(products?categoryId=1);
答案 0 :(得分:2)
您应该使用request.getParameter(String)。