XML Element

The XML element does not render anything by itself, but can be used as an outer wrapper to denote a CAML data island on the page.

<XML
  ID = "Text">
</XML>

Attributes

Name Description
ID Optional Text. Specifies an ID for the CAML data island.

Remarks

The ows: namespace is implied for all elements contained within the XML element's start and end tags.

Example

The following example illustrates global scope for a variable with respect to the page. The second block returns the value set in the first block.

<ows:XML>
  <SetVar Name="GlobalVar" Scope="Request">Bar</SetVar>
</ows:XML>
 .
 .
 .
<ows:XML>
  <GetVar Name="GlobalVar">
</ows:XML>

See Also

HTML