Hi all,
I have a strange problem. I have a Arduino + Ethernet shield set up as a webserver. I try to build up a html page and have problems with the Arduino not responding. It boils down to the following
This works (page displays properly)
...
...
server.println ("server << "<div class="ui-grid-a">");
...
...
This does not work
...
...
server.println ("<div class="ui-grid-a">");
server.println ("<div class="ui-block-a">");
...
...
I truly do not understand why the latter does not work since in my simple world the webserver should just process what it has been told to process? I am truly a newbee but this makes no sense to me... I also see the same "effect" when I comment out other codes in my sketch, I can not find any logic in why it works/not works since it is basically just the matter of pushing out some html code...
Brgds
Christian