General area when it fits no where else

Moderator: Mmiscool

User avatar
By tcpipchip
#58217 In my project i defined 1 html webpage that is working fine!

How i can i define more that 1 webpage to show in differents moments ?

For example, i have a webpage to enter data, but i need other for print the data.
User avatar
By Electroguard
#58222
Code: Select all[HOME]
cls
html "<BR>This is HOME page<BR>"
goto [FOOTER]

[PAGE1]
cls
html "<BR>This is Page 1<BR>"
goto [FOOTER]

[PAGE2]
cls
html "<BR>And this is Page 2<BR>"
goto [FOOTER]

[FOOTER]
html "<BR>"
button "Home", [HOME]
html " "
button "Page1", [PAGE1]
html " "
button "Page2", [PAGE2]
html "<BR>"
wait