-->
Page 1 of 1

Maximum string length?

PostPosted: Mon Dec 28, 2015 2:15 am
by marklein
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!