Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By marklein
#37297 I'm working on a standalone web server and I'd like to style it as nicely as possible, which leads me to wonder what the maximum length for a string is on these modules (12E specifically if it matters), and how to deal with it. I'm using something like the following, maybe there's a better way to serve up large pages?

Code: Select all...
String theHTML = "Lots of HTML here...";
server.send(200, "text/plain", theHTML);
...


How long a string can I send this way, and is there a better way I'm not using? Thanks!