Re: list delimiters question

2012-11-15 Thread Greg Morphis
and the first one is separating the parameters from the URL using the "?" as a delimiter. On Thu, Nov 15, 2012 at 8:59 AM, Dean Lawrence wrote: > > It is treading your form.some_url value as a list separated by a > question mark. The listgetat is retrieving the second value in the > list, whic

Re: list delimiters question

2012-11-15 Thread Greg Morphis
gets the second item in the list (chapter_id=12345) using the "=" as a delimiter On Thu, Nov 15, 2012 at 8:53 AM, morchella wrote: > > not sure what the listgetat 2 is doing? > > > ~| Order the Adobe Coldfusion Anthology now!

Re: list delimiters question

2012-11-15 Thread Dean Lawrence
It is treading your form.some_url value as a list separated by a question mark. The listgetat is retrieving the second value in the list, which are all the url name-value pairs. On Thu, Nov 15, 2012 at 9:53 AM, morchella wrote: > > not sure what the listgetat 2 is doing? > > >

Re: list delimiters question

2012-11-15 Thread morchella
not sure what the listgetat 2 is doing? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message

Re: list delimiters question

2012-11-15 Thread morchella
greg, that is perfect. Thank You. just seems a little cludgy. would be nice if i could just call the var like a url inside the object returnd in the form. any how, this will di it for me.. thanks again! -paul On Thu, Nov 15, 2012 at 9:43 AM, Greg Morphis wrote: > > no need to convert it to a

Re: list delimiters question

2012-11-15 Thread morchella
its from a form field, not a url, but it is a url. =] On Thu, Nov 15, 2012 at 9:43 AM, Marty Franklin wrote: > > Can you just access through the url scope? > > > > Best Regards, > > *Marty Franklin* > /Information Technology/ > > *Asset Research Services, Inc.* > ma...@assetresearch.com

Re: list delimiters question

2012-11-15 Thread Greg Morphis
no need to convert it to a array (I was trying to go that route but keeping it a list works fine too) On Thu, Nov 15, 2012 at 8:40 AM, Greg Morphis wrote: > I'm sure there are several ways to do this > http://somesite.com/some_display.cfm?some_id=4184&chapter_id=12120&passage_id=40099

Re: list delimiters question

2012-11-15 Thread Marty Franklin
Can you just access through the url scope? Best Regards, *Marty Franklin* /Information Technology/ *Asset Research Services, Inc.* ma...@assetresearch.com On 11/15/2012 7:28 AM, morchella wrote: > hey guys! > i could use a liitle help. i am trying to get a s

Re: list delimiters question

2012-11-15 Thread Greg Morphis
I'm sure there are several ways to do this http://somesite.com/some_display.cfm?some_id=4184&chapter_id=12120&passage_id=40099 "/> On Thu, Nov 15, 2012 at 8:28 AM, morchella wrote: > > hey guys! > i could use a liitle help. i am trying to get a specific value. in this > example "ch

list delimiters question

2012-11-15 Thread morchella
hey guys! i could use a liitle help. i am trying to get a specific value. in this example "chapter_id" ListgetAt could work, but the returned form url cold have the value in a different oposition at any time. i thought i could use a delimiter specifiying ,"chapter_id=" but that dosnt seem to work.