Using the new Arduino IDE for ESP8266 and found bugs, report them here

Moderator: igrr

User avatar
By Pablo2048
#42298 So what about this:
Code: Select all  webServer.sendHeader("Cache-Control", "no-cache, no-store, must-revalidate");
  webServer.sendHeader("Pragma", "no-cache");
  webServer.sendHeader("Expires", "-1");
  webServer.send(200, "text/html",   "<html><head></head>"
    "<body>"
    "<div>My HTML Code</div>"
    "</body></html>");
  );
webServer.client().stop();