@Ziggy2012 , in the WebServer example sketch from Arduino 1.0.1, after the line if(c == "\n" ... I think the client.print... commands should be changed to server.print... except for the last one client.stop() . I think this is the same problem from mrbubl3s in 2010 on the old forum. If somebody agrees with this, maybe the example code and page should be updated.
What I tried was combining the WebServer example with the Arduino Data Server code from Hari (http://arduino.cc/forum/index.php/topic,6595.0.html#0), and then I was able to see the text output printed by server.print commands via a browser pointed to the arduino's ip. Note that in Hari's code example, you need to change "Client" to "EthernetClient" and "Server" to "EthernetServer" for the class definitions.