掲示板

How do I get a parameter's value between to server calls ?

13年前 に Carole Béatrice DEMGNE KAMDEM によって更新されました。

How do I get a parameter's value between to server calls ?

New Member 投稿: 7 参加年月日: 10/07/01 最新の投稿
Hi all,

First I execute a function which return an URL

action=\"/contacts/view.jsp?myParam=\"valueOfmyParam\"

to call in the second stage

In the second stage, I want to retrieve to "step" parameter's value in my Java code (JSPPortlet.java) but I don't know how to do this.

Any idea ?
Thanks in advance for your help.
thumbnail
13年前 に Dong-Jun Kim によって更新されました。

RE: How do I get a parameter's value between to server calls ?

Junior Member 投稿: 61 参加年月日: 09/12/23 最新の投稿
I think following is what you are looking for.


Object parameterValue = ParamUtil.get(request, paramName, defaultValue);


Hope this helps.

Cheers.