Re: Re: Get object form Parameters

2008-09-27 Thread Eyal Golan
On Sat, Sep 27, 2008 at 8:38 AM, fish3934 [EMAIL PROTECTED] wrote: How to pass id and got that object from that id? Instead of: PageParameters para=new PageParameters(); para.put(result,resultList); do somethig like this: para.put(listId, resultListId); Where the resultListID is the ID

Re: Get object form Parameters

2008-09-26 Thread Igor Vaynberg
pageparameters is used for passing parameters on the url, so it only supports strings or whatever you can convert to a string. -igor On Fri, Sep 26, 2008 at 9:35 PM, fish3934 [EMAIL PROTECTED] wrote: Hi All, I wanted to pass an object from one page to another page,so I set an object

Re: Get object form Parameters

2008-09-26 Thread 张伟
pass id, and then get that object from that id 2008/9/27 Igor Vaynberg [EMAIL PROTECTED] pageparameters is used for passing parameters on the url, so it only supports strings or whatever you can convert to a string. -igor On Fri, Sep 26, 2008 at 9:35 PM, fish3934 [EMAIL PROTECTED] wrote: