ZVON > References > VoiceXML Reference |
Intro / Search / ZVON |
Element: | meta |
Attributes: | | content | http-equiv | name | |
Parents: | | vxml | |
Description: | Go to Standard |
<vxml version="1.0"> <meta name="maintainer" content="jpdoe@anycompany.example"/> … </vxml> |
<vxml version="1.0"> <meta http-equiv="Expires" content="0"/> <meta http-equiv="Date" content="Thu, 12 Dec 1999 23:27:21 GMT"/> … </vxml> |
<vxml version="1.0"> <meta name="author" content="John Doe"/> <meta name="maintainer" content="hello-support@hi.example"/> <var name="hi" expr="'Hello World!'"/> <form> <block> <value expr="hi"/>Goodbye! </block> </form> </vxml> |
<vxml version="1.0"> <meta name="author" content="John Doe"/> <meta name="maintainer" content="hello-support@hi.example"/> <var name="hi" expr="'Hello World!'"/> <form> <block> <value expr="hi"/> <goto next="#say_goodbye"/> </block> </form> <form id="say_goodbye"> <block> Goodbye! </block> </form> </vxml> |