Xpages and @UrlQueryString

Hi all,

i’ve noticed that @UrlQueryString isn’t available in Lotusscript server-side. Right?

Anybody can tell me another way to obtain this?

thanx

Andrea

Subject: Re: XPages and @URLQueryString

Do you mean that it’s not available in server-side javascript?You can use context.getURLParameter() in most places, although I see to recollect that when I was developing on 8.5 it didn’t work in beforePageLoad events.

If you need to get the URL query string parameter in beforePageLoad, look at Matt White’s extension to the xpCGIVariables SSJS library in TaskJam. It has a getURLParam function that works fine.

Regards

Paul

Subject: Thanks a lot, i’ll try!