-->
Page 2 of 2

Re: CaptivePortalAdvanced shows only blank pages

PostPosted: Thu Mar 03, 2016 5:30 am
by Pablo2048
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();

Re: CaptivePortalAdvanced shows only blank pages

PostPosted: Thu Mar 03, 2016 9:54 am
by krebbi