Actually an object that does not contain anything can be closed in the opening tag by ending it with a forward slash, avoiding the need for a seperate closing tag. For example...
<Page name="foo"/>
Signifies a page named foo that is empty. The ending forward slash closes the tag exactly like a seperate closing tag. The above one liner is the same as...
<Page name="foo">
</Page>
|