RE: trouble passing multiple parameters using

2005-06-23 Thread Joe Germuska
For the relatively low cost of specifying your servlet mapping, you can use the JSTL c:url/c:param tags and achieve all of this much more concisely: ">Click Here There's an enhancement request filed to add "c:param" type functionality to , and I think I even assigned it to myself, but to

RE: trouble passing multiple parameters using

2005-06-23 Thread Bob Arnott
Phani wrote: > Here is my code in the JSP page: > > property="storeNumber"/> > > property="storeName"/> > > <% >java.util.HashMap params = new java.util.HashMap(); >params.put("storeNo",param1); >params.put("storeName",param2); >pageContext.setAttribute("storeInfo", params); >

RE: trouble passing multiple parameters using

2005-06-22 Thread Abdullah Jibaly
). Regards, Abdullah -Original Message- From: Phani [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 1:30 PM To: struts-user@jakarta.apache.org Subject: trouble passing multiple parameters using Here is my code in the JSP page: <% java.util.HashMap params =

Re: trouble passing multiple parameters using

2005-06-22 Thread Laurie Harper
Are you sure stockingStoreSalesReviewForm.getStoreNumber() is returning valid data? L. Phani wrote: Here is my code in the JSP page: <% java.util.HashMap params = new java.util.HashMap(); params.put("storeNo",param1); params.put("storeName",param2); pageContext.setAtt

Re: trouble passing multiple parameters using

2005-06-22 Thread Roberto
Phani wrote: In the Action class: String storeNumber = (String)request.getParameter("storeNo"); I am getting null in the storeNumber. What went wrong!! Any help appreciated... But you give at the Action a java.util.HashMap not a String and its name is "storeInfo" not "storeNo". am I mi

trouble passing multiple parameters using

2005-06-22 Thread Phani
Here is my code in the JSP page: <% java.util.HashMap params = new java.util.HashMap(); params.put("storeNo",param1); params.put("storeName",param2); pageContext.setAttribute("storeInfo", params); %> Click Here In the Action class: String storeNumber = (String)request