I have 3 pages in my application.
On the first page I placed an Input box and a button.
I would like to check if the user entered a specific password he will be transfered to Page2 else he will be transfered to Page3.
The example of Increeption/decription I found on the example forum did not work when I changed it to:
Any recomendation?Code:sUser =Input.GetText('Input1'); if sUser == "password" then Page.Jump('Page2'); else Page.Jump('Page3'); end

Reply With Quote