We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab4632 commit a138309Copy full SHA for a138309
libraries/Ethernet/examples/WebServer/WebServer.ino
@@ -63,8 +63,8 @@ void loop() {
63
// send a standard http response header
64
client.println("HTTP/1.1 200 OK");
65
client.println("Content-Type: text/html");
66
- client.println("Connection: close");
67
- client.println("Refresh: 5");
+ client.println("Connection: close"); // the connection will be closed after completion of the response
+ client.println("Refresh: 5"); // refresh the page automatically every 5 sec
68
client.println();
69
client.println("<!DOCTYPE HTML>");
70
client.println("<html>");
0 commit comments