| Author |
to pass values between jsp
|
rosaria italia
Greenhorn
Joined: May 15, 2006
Posts: 28
|
|
Hello, How can I pass hidden's value from a jsp page to other? My code is: a.jsp ... <h:form id="insUser"> ... <h:inputHidden id="flag" value="1"></h:inputHidden> ... </h:form> b.jsp <%String flag=""; flag=request.getParameter("flag"); out.print("flag="+flag); %> b.jsp shows: flag=null Could you help me?
|
 |
Richard Green
Ranch Hand
Joined: Aug 25, 2005
Posts: 536
|
|
|
just out of curiosity, why do u need this hidden variable for? cant u access this variable from ur managed bean?
|
MCSD, SCJP, SCWCD, SCBCD, SCJD (in progress - URLybird 1.2.1)
|
 |
 |
|
|
subject: to pass values between jsp
|
|
|