|
»
Displaying records from DB
|
View:
New views
11 Messages
—
Rating Filter:
Alert me
|
|
|
Displaying records from DBI am fetching records from db and displaying those on the template like this:- <td><r:v name="name"/></td> <td><r:v name="address"/></td> <td><r:v name="description"/></td> <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> Here i am passing the hotel_id to perform the desired action like viewing the hotel for that particular hotel_id or edit or delete. I am not getting as to where i need to these actions show, edit or delete for that matter. Or may be my approach is wrong. Please guide me through this. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBI am trying with <a href="${v SUBMISSION:QUERY:show/}${v hotel_id/}">View Hotel</a> for <a href="show?id=${v hotel_id/}">View Hotel</a> with doShow function defined, but i am not able to catch the hotel_id in the function. How can i pass this parameter from the page? On Apr 9, 8:00 am, Rahul <maverick.rah...@...> wrote: > I am fetching records from db and displaying those on the template > like this:- > > <td><r:v name="name"/></td> > <td><r:v name="address"/></td> > <td><r:v name="description"/></td> > <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> > <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> > <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> > > Here i am passing the hotel_id to perform the desired action like > viewing the hotel for that particular hotel_id or edit or delete. > > I am not getting as to where i need to these actions show, edit or > delete > for that matter. Or may be my approach is wrong. > > Please guide me through this. You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBHi Rahul, I'm not going to spend time replying to this since it's documented in the User's Guide, the small examples, the full blown example projects, ... Please take some time going through the material on the website and read up on the basics. Best regards, Geert On 09 Apr 2009, at 06:30, Rahul wrote: > > I am trying with > > <a href="${v SUBMISSION:QUERY:show/}${v hotel_id/}">View Hotel</a> for > > <a href="show?id=${v hotel_id/}">View Hotel</a> > > with doShow function defined, but i am not able to catch the hotel_id > in the > function. How can i pass this parameter from the page? > > > On Apr 9, 8:00 am, Rahul <maverick.rah...@...> wrote: >> I am fetching records from db and displaying those on the template >> like this:- >> >> <td><r:v name="name"/></td> >> <td><r:v name="address"/></td> >> <td><r:v name="description"/></td> >> <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> >> <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> >> <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> >> >> Here i am passing the hotel_id to perform the desired action like >> viewing the hotel for that particular hotel_id or edit or delete. >> >> I am not getting as to where i need to these actions show, edit or >> delete >> for that matter. Or may be my approach is wrong. >> >> Please guide me through this. > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBHi Geert, after spending my time searching around, I am not able to pass the parameter <td><a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View Hotel</ a></td> and accessing it through int id = getParameterInt("hotel_id"); It always shows me 0. Thanks On Apr 9, 10:05 am, Geert Bevin <gbe...@...> wrote: > Hi Rahul, > > I'm not going to spend time replying to this since it's documented in > the User's Guide, the small examples, the full blown example > projects, ... Please take some time going through the material on the > website and read up on the basics. > > Best regards, > > Geert > > On 09 Apr 2009, at 06:30, Rahul wrote: > > > > > > > I am trying with > > > <a href="${v SUBMISSION:QUERY:show/}${v hotel_id/}">View Hotel</a> for > > > <a href="show?id=${v hotel_id/}">View Hotel</a> > > > with doShow function defined, but i am not able to catch the hotel_id > > in the > > function. How can i pass this parameter from the page? > > > On Apr 9, 8:00 am, Rahul <maverick.rah...@...> wrote: > >> I am fetching records from db and displaying those on the template > >> like this:- > > >> <td><r:v name="name"/></td> > >> <td><r:v name="address"/></td> > >> <td><r:v name="description"/></td> > >> <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> > >> <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> > >> <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> > > >> Here i am passing the hotel_id to perform the desired action like > >> viewing the hotel for that particular hotel_id or edit or delete. > > >> I am not getting as to where i need to these actions show, edit or > >> delete > >> for that matter. Or may be my approach is wrong. > > >> Please guide me through this. > > -- > Geert Bevin > Terracotta -http://www.terracotta.org > Uwyn "Use what you need" -http://uwyn.com > RIFE Java application framework -http://rifers.org > Flytecase Band -http://flytecase.be > Music and words -http://gbevin.com You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBRead up on query parameters in a URL On 09 Apr 2009, at 11:48, Rahul wrote: > > Hi Geert, after spending my time searching around, I am not able to > pass the parameter > > <td><a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View Hotel</ > a></td> > > > and accessing it through > > int id = getParameterInt("hotel_id"); > > It always shows me 0. > > Thanks > > On Apr 9, 10:05 am, Geert Bevin <gbe...@...> wrote: >> Hi Rahul, >> >> I'm not going to spend time replying to this since it's documented in >> the User's Guide, the small examples, the full blown example >> projects, ... Please take some time going through the material on the >> website and read up on the basics. >> >> Best regards, >> >> Geert >> >> On 09 Apr 2009, at 06:30, Rahul wrote: >> >> >> >> >> >>> I am trying with >> >>> <a href="${v SUBMISSION:QUERY:show/}${v hotel_id/}">View Hotel</a> >>> for >> >>> <a href="show?id=${v hotel_id/}">View Hotel</a> >> >>> with doShow function defined, but i am not able to catch the >>> hotel_id >>> in the >>> function. How can i pass this parameter from the page? >> >>> On Apr 9, 8:00 am, Rahul <maverick.rah...@...> wrote: >>>> I am fetching records from db and displaying those on the template >>>> like this:- >> >>>> <td><r:v name="name"/></td> >>>> <td><r:v name="address"/></td> >>>> <td><r:v name="description"/></td> >>>> <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> >>>> <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> >>>> <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> >> >>>> Here i am passing the hotel_id to perform the desired action like >>>> viewing the hotel for that particular hotel_id or edit or delete. >> >>>> I am not getting as to where i need to these actions show, edit or >>>> delete >>>> for that matter. Or may be my approach is wrong. >> >>>> Please guide me through this. >> >> -- >> Geert Bevin >> Terracotta -http://www.terracotta.org >> Uwyn "Use what you need" -http://uwyn.com >> RIFE Java application framework -http://rifers.org >> Flytecase Band -http://flytecase.be >> Music and words -http://gbevin.com > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBSUBMISSION:QUERY:name says that it is replaced by the url to activate the corresponding submission, all data will be passed through an automatically constructed query string. The query string generated in my case is :- /rife-jumpstart/?submission=show&submissioncontext=Lg%3D%3D9 here the last digit 9 is the actual id that i am trying to pass by this <a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View Hotel not sure how can i get that in my class. On Apr 9, 2:51 pm, Geert Bevin <gbe...@...> wrote: > Read up on query parameters in a URL > > On 09 Apr 2009, at 11:48, Rahul wrote: > > > > > > > Hi Geert, after spending my time searching around, I am not able to > > pass the parameter > > > <td><a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View Hotel</ > > a></td> > > > and accessing it through > > > int id = getParameterInt("hotel_id"); > > > It always shows me 0. > > > Thanks > > > On Apr 9, 10:05 am, Geert Bevin <gbe...@...> wrote: > >> Hi Rahul, > > >> I'm not going to spend time replying to this since it's documented in > >> the User's Guide, the small examples, the full blown example > >> projects, ... Please take some time going through the material on the > >> website and read up on the basics. > > >> Best regards, > > >> Geert > > >> On 09 Apr 2009, at 06:30, Rahul wrote: > > >>> I am trying with > > >>> <a href="${v SUBMISSION:QUERY:show/}${v hotel_id/}">View Hotel</a> > >>> for > > >>> <a href="show?id=${v hotel_id/}">View Hotel</a> > > >>> with doShow function defined, but i am not able to catch the > >>> hotel_id > >>> in the > >>> function. How can i pass this parameter from the page? > > >>> On Apr 9, 8:00 am, Rahul <maverick.rah...@...> wrote: > >>>> I am fetching records from db and displaying those on the template > >>>> like this:- > > >>>> <td><r:v name="name"/></td> > >>>> <td><r:v name="address"/></td> > >>>> <td><r:v name="description"/></td> > >>>> <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> > >>>> <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> > >>>> <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> > > >>>> Here i am passing the hotel_id to perform the desired action like > >>>> viewing the hotel for that particular hotel_id or edit or delete. > > >>>> I am not getting as to where i need to these actions show, edit or > >>>> delete > >>>> for that matter. Or may be my approach is wrong. > > >>>> Please guide me through this. > > >> -- > >> Geert Bevin > >> Terracotta -http://www.terracotta.org > >> Uwyn "Use what you need" -http://uwyn.com > >> RIFE Java application framework -http://rifers.org > >> Flytecase Band -http://flytecase.be > >> Music and words -http://gbevin.com > > -- > Geert Bevin > Terracotta -http://www.terracotta.org > Uwyn "Use what you need" -http://uwyn.com > RIFE Java application framework -http://rifers.org > Flytecase Band -http://flytecase.be > Music and words -http://gbevin.com You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBRahul, honestly, read the docs and examples, it's all explained in there. You're using an URL anchor instead of a query string parameter to pass the hotel ID. That part is just standard HTTP stuff, has nothing to do with RIFE. On 09 Apr 2009, at 12:05, Rahul wrote: > > SUBMISSION:QUERY:name says that it is replaced by the url to activate > the corresponding submission, all data will be passed through an > automatically constructed query string. > > The query string generated in my case is :- > > /rife-jumpstart/?submission=show&submissioncontext=Lg%3D%3D9 > > here the last digit 9 is the actual id that i am trying to pass by > this > > <a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View Hotel > > not sure how can i get that in my class. > > > On Apr 9, 2:51 pm, Geert Bevin <gbe...@...> wrote: >> Read up on query parameters in a URL >> >> On 09 Apr 2009, at 11:48, Rahul wrote: >> >> >> >> >> >>> Hi Geert, after spending my time searching around, I am not able to >>> pass the parameter >> >>> <td><a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View >>> Hotel</ >>> a></td> >> >>> and accessing it through >> >>> int id = getParameterInt("hotel_id"); >> >>> It always shows me 0. >> >>> Thanks >> >>> On Apr 9, 10:05 am, Geert Bevin <gbe...@...> wrote: >>>> Hi Rahul, >> >>>> I'm not going to spend time replying to this since it's >>>> documented in >>>> the User's Guide, the small examples, the full blown example >>>> projects, ... Please take some time going through the material on >>>> the >>>> website and read up on the basics. >> >>>> Best regards, >> >>>> Geert >> >>>> On 09 Apr 2009, at 06:30, Rahul wrote: >> >>>>> I am trying with >> >>>>> <a href="${v SUBMISSION:QUERY:show/}${v hotel_id/}">View Hotel</a> >>>>> for >> >>>>> <a href="show?id=${v hotel_id/}">View Hotel</a> >> >>>>> with doShow function defined, but i am not able to catch the >>>>> hotel_id >>>>> in the >>>>> function. How can i pass this parameter from the page? >> >>>>> On Apr 9, 8:00 am, Rahul <maverick.rah...@...> wrote: >>>>>> I am fetching records from db and displaying those on the >>>>>> template >>>>>> like this:- >> >>>>>> <td><r:v name="name"/></td> >>>>>> <td><r:v name="address"/></td> >>>>>> <td><r:v name="description"/></td> >>>>>> <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> >>>>>> <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> >>>>>> <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> >> >>>>>> Here i am passing the hotel_id to perform the desired action like >>>>>> viewing the hotel for that particular hotel_id or edit or delete. >> >>>>>> I am not getting as to where i need to these actions show, edit >>>>>> or >>>>>> delete >>>>>> for that matter. Or may be my approach is wrong. >> >>>>>> Please guide me through this. >> >>>> -- >>>> Geert Bevin >>>> Terracotta -http://www.terracotta.org >>>> Uwyn "Use what you need" -http://uwyn.com >>>> RIFE Java application framework -http://rifers.org >>>> Flytecase Band -http://flytecase.be >>>> Music and words -http://gbevin.com >> >> -- >> Geert Bevin >> Terracotta -http://www.terracotta.org >> Uwyn "Use what you need" -http://uwyn.com >> RIFE Java application framework -http://rifers.org >> Flytecase Band -http://flytecase.be >> Music and words -http://gbevin.com > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBWell well..... getParameter(name) from com.uwyn.rife.engine.ElementSupport doesnt gave me the parameters from the query url. However using setProhibitRawAccess(false) getHttpServletRequest().getParameter("hotel_id") gave me the parameter value.... I dont have the reason for this... may be Geert you can add the reasons to this. Thanks On Apr 9, 3:07 pm, Geert Bevin <gbe...@...> wrote: > Rahul, honestly, read the docs and examples, it's all explained in > there. You're using an URL anchor instead of a query string parameter > to pass the hotel ID. That part is just standard HTTP stuff, has > nothing to do with RIFE. > > On 09 Apr 2009, at 12:05, Rahul wrote: > > > > > > > SUBMISSION:QUERY:name says that it is replaced by the url to activate > > the corresponding submission, all data will be passed through an > > automatically constructed query string. > > > The query string generated in my case is :- > > > /rife-jumpstart/?submission=show&submissioncontext=Lg%3D%3D9 > > > here the last digit 9 is the actual id that i am trying to pass by > > this > > > <a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View Hotel > > > not sure how can i get that in my class. > > > On Apr 9, 2:51 pm, Geert Bevin <gbe...@...> wrote: > >> Read up on query parameters in a URL > > >> On 09 Apr 2009, at 11:48, Rahul wrote: > > >>> Hi Geert, after spending my time searching around, I am not able to > >>> pass the parameter > > >>> <td><a href="${v SUBMISSION:QUERY:show/}#${v hotel_id/}">View > >>> Hotel</ > >>> a></td> > > >>> and accessing it through > > >>> int id = getParameterInt("hotel_id"); > > >>> It always shows me 0. > > >>> Thanks > > >>> On Apr 9, 10:05 am, Geert Bevin <gbe...@...> wrote: > >>>> Hi Rahul, > > >>>> I'm not going to spend time replying to this since it's > >>>> documented in > >>>> the User's Guide, the small examples, the full blown example > >>>> projects, ... Please take some time going through the material on > >>>> the > >>>> website and read up on the basics. > > >>>> Best regards, > > >>>> Geert > > >>>> On 09 Apr 2009, at 06:30, Rahul wrote: > > >>>>> I am trying with > > >>>>> <a href="${v SUBMISSION:QUERY:show/}${v hotel_id/}">View Hotel</a> > >>>>> for > > >>>>> <a href="show?id=${v hotel_id/}">View Hotel</a> > > >>>>> with doShow function defined, but i am not able to catch the > >>>>> hotel_id > >>>>> in the > >>>>> function. How can i pass this parameter from the page? > > >>>>> On Apr 9, 8:00 am, Rahul <maverick.rah...@...> wrote: > >>>>>> I am fetching records from db and displaying those on the > >>>>>> template > >>>>>> like this:- > > >>>>>> <td><r:v name="name"/></td> > >>>>>> <td><r:v name="address"/></td> > >>>>>> <td><r:v name="description"/></td> > >>>>>> <td><a href="show?id=${v hotel_id/}">View Hotel</a></td> > >>>>>> <td><a href="edit?id=${v hotel_id/}">Edit Hotel</a></td> > >>>>>> <td><a href="delete?id=${v hotel_id/}">Delete Hotel</a></td> > > >>>>>> Here i am passing the hotel_id to perform the desired action like > >>>>>> viewing the hotel for that particular hotel_id or edit or delete. > > >>>>>> I am not getting as to where i need to these actions show, edit > >>>>>> or > >>>>>> delete > >>>>>> for that matter. Or may be my approach is wrong. > > >>>>>> Please guide me through this. > > >>>> -- > >>>> Geert Bevin > >>>> Terracotta -http://www.terracotta.org > >>>> Uwyn "Use what you need" -http://uwyn.com > >>>> RIFE Java application framework -http://rifers.org > >>>> Flytecase Band -http://flytecase.be > >>>> Music and words -http://gbevin.com > > >> -- > >> Geert Bevin > >> Terracotta -http://www.terracotta.org > >> Uwyn "Use what you need" -http://uwyn.com > >> RIFE Java application framework -http://rifers.org > >> Flytecase Band -http://flytecase.be > >> Music and words -http://gbevin.com > > -- > Geert Bevin > Terracotta -http://www.terracotta.org > Uwyn "Use what you need" -http://uwyn.com > RIFE Java application framework -http://rifers.org > Flytecase Band -http://flytecase.be > Music and words -http://gbevin.com You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBREAD ... THE ... DOCS I'm not going to waste more time replying to you about this. On 09 Apr 2009, at 13:37, Rahul wrote: > > Well well..... > > getParameter(name) from com.uwyn.rife.engine.ElementSupport > > doesnt gave me the parameters from the query url. > > However using > setProhibitRawAccess(false) > getHttpServletRequest().getParameter("hotel_id") > > gave me the parameter value.... > > I dont have the reason for this... may be Geert you can add the > reasons to this. -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBGeert, you did enough , don't bother any more, i will take it from here. let him be. jgabios On Thu, Apr 9, 2009 at 2:44 PM, Geert Bevin <gbevin@...> wrote: > > READ ... THE ... DOCS > > I'm not going to waste more time replying to you about this. > > On 09 Apr 2009, at 13:37, Rahul wrote: > >> >> Well well..... >> >> getParameter(name) from com.uwyn.rife.engine.ElementSupport >> >> doesnt gave me the parameters from the query url. >> >> However using >> setProhibitRawAccess(false) >> getHttpServletRequest().getParameter("hotel_id") >> >> gave me the parameter value.... >> >> I dont have the reason for this... may be Geert you can add the >> reasons to this. > > -- > Geert Bevin > Terracotta - http://www.terracotta.org > Uwyn "Use what you need" - http://uwyn.com > RIFE Java application framework - http://rifers.org > Flytecase Band - http://flytecase.be > Music and words - http://gbevin.com > > > > > -- jgabios http://bash.editia.info --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Displaying records from DBHey guys.... just chill..... I am very new to this stuff so i am getting these issues. These issues must be irritating for you guys.... but for me it stands as it is... Anyways... somehow I got out of this issue. Catch you guys with some other if I get one. Thanks On Apr 9, 6:02 pm, gabriel munteanu <jajali...@...> wrote: > Geert, you did enough , don't bother any more, i will take it from here. > let him be. > > jgabios > > > > On Thu, Apr 9, 2009 at 2:44 PM, Geert Bevin <gbe...@...> wrote: > > > READ ... THE ... DOCS > > > I'm not going to waste more time replying to you about this. > > > On 09 Apr 2009, at 13:37, Rahul wrote: > > >> Well well..... > > >> getParameter(name) from com.uwyn.rife.engine.ElementSupport > > >> doesnt gave me the parameters from the query url. > > >> However using > >> setProhibitRawAccess(false) > >> getHttpServletRequest().getParameter("hotel_id") > > >> gave me the parameter value.... > > >> I dont have the reason for this... may be Geert you can add the > >> reasons to this. > > > -- > > Geert Bevin > > Terracotta -http://www.terracotta.org > > Uwyn "Use what you need" -http://uwyn.com > > RIFE Java application framework -http://rifers.org > > Flytecase Band -http://flytecase.be > > Music and words -http://gbevin.com > > -- > jgabioshttp://bash.editia.info You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
| Free embeddable forum powered by Nabble | Forum Help |
