How to use " in my output?

Posted by tcp-me

Sorry for the newbie questions, but how do I print “ in my output? For example

when LB_FAILED { HTTP::respond 200 content “Apology PageWe are sorry, but the site you are looking for is temporarily out of service

But if I put in a link, it requires “ and the parser doesn’t like it.

when LB_FAILED { HTTP::respond 200 content “Apology PageWe are sorry, but the site you are looking for is temporarily out of service. Go to Google for a while.

Thanks…

Posted by ddesmidt Double quotes (") is a special character. To be able to print it, you have to prepend that special character with . You have an example in the community web page with the Sorry Page: a10support.com/adc/index.php/forum/7-afl…-servers-are-down#48 with: <div align="center"> Dimitri

Posted by tcp-me

That you very much. That worked.