How can i refresh a webpage on an ESP8266WebServer?
Posted: Mon Jun 08, 2020 7:01 am
I Upload a file to my webserver, to display the new file in the filelist i must refresh (like Webbrowser F5) (or load it new) the webpage. How can i do that?
A redirect does not help, this does not refresh.
A redirect does not help, this does not refresh.
Code: Select all
ESP8266WebServer server(80);
...
server.sendHeader("Location", String("/files"), true);
server.send ( 302, "text/plain", "");