General area when it fits no where else

Moderator: Mmiscool

User avatar
By Electroguard
#45920 Returning to 'Edit' after 'Run'ning with many button clicks means either clicking 'Back' button many times to retrace steps or else entering (ESP_ IP)/edit url in browser address window.

To speed things up I'd like to add an Edit button to my script which could send ESP_IP/edit url to jump directly to the edit page if possible.

Can url link's be inserted into the script to send to the browser and jumped to somehow?

What prompted the question was I noticed that when the parser received input from a button component such as "button "Edit" [edit]", it gets shown in the browser address window as http://192.168.4.1/input?goto8=Edit (or similar), so I wondered if it might have been possible to somehow insert the Editor url http://192.168.4.1/edit instead, to make the browser jump to the Edit window from the running script. Perhaps might have been handy for other things too.
Was just a daft thought.
User avatar
By Mmiscool
#46899 You can inset any html you like in to a program.

This is an example of a link back to the edit page.

For a page that is on the same device
Code: Select allwprint |<a href="../edit">Click me to goto the edit page</a>|


for a link to an external site
Code: Select allwprint |<a href="http://www.google.com/">Click me to goto the edit page</a>|


Notice the | characters used to encapsulate a string that contains quotation marks.