Help with Query_String parameter passing please

Hi,

I would like to code a button to open a new Response document and pass certain variables to the new Response doc, then retrieve those variables through the Query_String field on the Response Doc using @ Functions or Commands. Actually what I’m looking for is the equivelent to something like “window.location = ‘/DB.nsf/Response?OpenForm&Var=Val’” had I been doing it in JS.

Thanks for your help

Felice

Subject: Use @UrlQueryString (WAS: Help with Query_String parameter passing please)

Subject: RE: Use @UrlQueryString (WAS: Help with Query_String parameter passing please)

thanks … will use the @UrlQueryString to read the values passed … any ideas on how to send them with @ Funtions or Commands?

Thank again

Felice

Subject: RE: Use @UrlQueryString (WAS: Help with Query_String parameter passing please)

Sure, there are a variety of techniques at your disposal. I would consider creating the required link in “pass-thru” HTML, using computed text to make up the dynamic portion of your querystring. Something like this (flagged up as pass-thru of course):

…/db.nsf/yourview?openview&val1=&val2=

… where the computed text resolves to the values you wish to pass.

Does that help?

Subject: RE: Use @UrlQueryString (WAS: Help with Query_String parameter passing please)

Cool idea … thanks!!