SuperMoonster
Programmer
I am not being able to retrieve in my action the data I sent it from my JSP.
I'm sending like this:
<html:link action="/ListaColecao.do?colec=${element.colecao}">${element.descricao}</html:link>
The link really does show me the parameter value, but I can't retrieve it in the action. I'm trying to do this:
Object obj = request.getParameter("colec");
Am i retrieving it correctly? How should i do it?
I'm sending like this:
<html:link action="/ListaColecao.do?colec=${element.colecao}">${element.descricao}</html:link>
The link really does show me the parameter value, but I can't retrieve it in the action. I'm trying to do this:
Object obj = request.getParameter("colec");
Am i retrieving it correctly? How should i do it?