Start a Web App Session with Parameter? (API 1)

i will open a wep page from a desktop app
as example

domain.abc:1025/start?caption=hello

and the parameter caption i will use in the page itself.
is that possible?
it seems that HandleURL have no session.

You can use WebSession.URLParameter for this.

I would use
domain.abc:1025/?page=start&caption=hello

You can then use those parameters in your session.open event handler.

2 Likes

great, thanks :slight_smile: