Problem uploading html code

Hi, I have an arduino and an internet shield and I want to make a program.

The problem is that in my code, there are lines like this:

client.println("");

Where there are ' " 's inside the 'client.println(" ")' and when I upload the code, the console shows me an error:

exit status 1
expected ')' before 'UTF'

so I can't upload my code.

Is there any way to force the code to upload, or to encrypt the html?

Thanks you ( and sorry for my english)

client.println("<meta charset="UTF-8"></meta>");

I think that you need to precede the " inside of the quotes with \ (backslash).

client.println("<meta charset=\"UTF-8\"></meta>");

On a side note, you can use the F macro with client.print to save SRAM'

client.println(F("<meta charset=\"UTF-8\"></meta>"));

It works. Thanks you!