Search
 
SCRIPT & CODE EXAMPLE
 

C

captive portal esp8266

void handleAppleCaptivePortal() {
    String Page = F("<HTML><HEAD><TITLE>Success</TITLE></HEAD><BODY>Success</BODY></HTML>");

    webServer.sendHeader("Cache-Control", "no-cache, no-store, must-revalidate");
    webServer.sendHeader("Pragma", "no-cache");
    webServer.sendHeader("Expires", "-1");
    webServer.send(200, "text/html", Page);
    return;
}
Comment

PREVIOUS NEXT
Code Example
C :: Calculate the area of a circle and modify the same program to calculate the volume of a cylinder given its radius and height. 
C :: l/O Multiple Values 
C :: openinh VCL file for Vivado HLS 
C :: string compare in c 
C :: batteries included 
C :: or gmode inline image 
C :: C Relationship Between Arrays and Pointers 
C :: c static variable 
C :: c addition 
C :: declaration of arrays 
C :: float 
C :: c program structure 
C :: C Increment and Decrement Operators 
C :: crear funcion en c 
C :: latex font sizes 
Dart :: future delayed flutter 
Dart :: flutter sharedpreferences clear 
Dart :: Dart integer User input 
Dart :: italic text flutter 
Dart :: dart continue 
Dart :: flutter showsnackbar 
Dart :: toast flutter 
Dart :: increase text size of Test flutter 
Dart :: how to make appbar transparent in flutter 
Dart :: dart square root 
Dart :: six_ft_apart 
Dart :: dart convert int to string 
Dart :: flutter alertdialog 
Dart :: listview inside column flutter 
Dart :: hellow world in dart 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =