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.
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.
great, thanks