I've created a webform which accepts a query string from the URL, i.e.,
http://SERVER/URL/default.asp?projectcode=COMA
In the init method of my webform I retrieve the query value ("COMA")
by using:
s = websession().getParm("projectcode");
It works perfectly when the user is already logged into the Enterprise
Portal.
However, when the user is not logged in, the value is empty.
I've tried using the WebArgs-class, but the problem is the same. When
debugging it appears that WebApplication and WebSession is
instantiated twice - and on the second instantiation the query string
is lost.
TIA.
Regards,
Morten