Slide 11.15: WML input fields (cont.)
  Slide 11.17: WML variables, comments, and character entities
  Home


WML GO and POSTFIELD Tags


GO Tag
The <go> task represents the action of going to a new card. Where to go is specified with the href attribute. For example,
   <go href="someurl" method="method">
      ... <postfield> ...
      ... <setvar> ...
   </go>

POSTFIELD Tag
The <postfield> tag is used to set a name/value pair that can be transmitted to an origin server (source of the request) during a URL request. The name is set by the name attribute and must be a valid WML variable name. The value is set by the value attribute. For example,
   <postfield name="somename" value="somevalue"/>
A <go> element can contain one or more <postfield> elements. If the destination of a <go> element is a card within the same deck, all of the <postfield> elements will be ignored.