>> Loc:field = p_web.getvalue('passfield')
>> p_web.ssv('Loc:field',Loc:field)
This is not a good way to do it, since if the 'passfield' value does not exist then the sessionValue of Loc:Field will be cleared.
A better approach is
p_web.StoreValue('passfield')
which moves the value to a session value, but _only_ if it exists as a value.
Yes, you can do this in a browse or form right at the top, after the Code statement.
>> If however I hand code for more parameters than there are in the URL, will this still work?
While I'm not 100% sure what you mean here - yes if you do a
p_web.SetValue('bruce','123')
and then
p_web.StoreValue('bruce')
then it will work the same.
cheers
Bruce