WiFi Web Server

hi
i am using WiFi Web Server example
the problem i am having is

client.print("");

gives this error

wifiServer:87: error: stray '#' in program
wifiServer.ino:87:41: error: invalid suffix "FF00" on integer constant
wifiServer.ino: In function 'void loop()':
wifiServer:87: error: expected `)' before numeric constant

so i am trying to change background color of the web page
shouldn't this work?
is there another way?

i am using a arduino 2560 and the wifi shield
i am trying to set up a web page that monitors
water level and temp of my grow room

thanks

devobtch

To include a quote mark in a quoted string, it is necessary to escape it by putting '' before it, like this:

char *foo = "\"Murder!\", she cried.";

br

ty

that was it

devobtch