i have tried the folowing way, but no success... sendContent has sent nothing
const char* ContentOne = R"(
4kb of html data in this place
)";
const char* ContentTwo = R"(
3kb of html data in this place
)";
void http_handle_page() {
httpServer.send(200, "text/html", "" );
httpServer.sendContent( ContentOne );
httpServer.sendContent( ContentTwo );
httpServer.client().stop();
}
Any help will be apreciated.
best regards.