NetTalk Central

Author Topic: Get parameter value from GET  (Read 2668 times)

rjolda

  • Sr. Member
  • ****
  • Posts: 329
    • View Profile
    • Email
Get parameter value from GET
« on: April 03, 2014, 10:57:33 AM »
Hi,
I have a GET that looks like this: GET /B_maps?_ajax_=1&Lookup_btn=1&_refresh_=sort&_popup_=1&LookupField=CLS__DX1NEW&_sort_=MCR:Dcode9&_title_=DX%201%20NEW:&THISPARM&CLS__DX1NEW=

It is calling the procedure B_maps.   I am trying to get the parameter that is: THISPARM
Tried all kinds of crazy permutations of   lookcode = p_web.GetValue('_title_=DX%201%20NEW:')  but can't get it right to get the value of  THISPARM. 
What it the correct label to use in the p_web.GetValue( ??? ) to retrieve the value of THISPARM???
TIA
Ron Jolda

rjolda

  • Sr. Member
  • ****
  • Posts: 329
    • View Profile
    • Email
Re: Get parameter value from GET
« Reply #1 on: April 03, 2014, 11:06:05 AM »
AHH,
Figured it out.  I had to assign my own name to the  parameter  e.g. org=THISPARM and then the Getvalue('org') retrieved the correct value!
Ron Jolda