Hello,
I am trying to write simple Web server with 16F648A. This PIC has 4096 pgm words. I have discoverred very uneffective storing of characters in program memory using HSEROUT.

e.g.

HSEROUT ["a"] 'cost 3 pgm words
HSEROUT ["aa"] 'cost 6 pgm words

So each new character cost 3 pgm words!
So if I have 4096 pgm memory, I can use in my program just 1000 characters and that's it.
Anyone has any idea how to use the strings with HSEROUT in a better way?

Thanks for any idea, i need to use at least 2K of HTML code + program code.