PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → How to perform the following task under webdev?
How to perform the following task under webdev?
Iniciado por guest, 13,may. 2015 13:44 - 2 respuestas
Publicado el 13,mayo 2015 - 13:44
Hi,

if e-mail alert are sends to a participant, the participant can click a link in the e-mail task alert to open the page containing the relevant information ( will need to bypass the security access and open up the relevant page with the correct parameter under webdev ).

Any suggestion on how to complete such task ( can ignore the sending of email portion)?

Regards,

PETER ZHOU
Publicado el 13,mayo 2015 - 14:20
Hi Peter,

it's quite easy... Just create an AWP page.
The link in your email should point to that page with values as parameter to do a specific task...
In your page, use the pageparameter function to retrieve the parameters value, and according to them, display whatever you need to display in your page...

I am using that mechanism to validate accounts when they are created on my web site.

Best regards
Publicado el 13,mayo 2015 - 15:29
I don't know if you are familiar with AWP pages, if so or if you think this is the time to start working with them use Fabrice solution.

If not you can do it using almost the same solution with dynamic sites. Just compose the link in the email to start your app and using one or more parameters, in the init code of your project check the parameter values with pageparameter and go to the page you need bypassing the security access.