The MetaTags tag is used to alter the host page's Title, Description, and Keywords. This is useful for Search Engine Optimization (SEO) as well as being an aid for your users.
<xmod:MetaTags>
<Title append="True|False">...Title Text...</Title>
<Keywords append="True|False">...Keywords...</Keywords>
<Description append="True|False">...Description...</Description>
<Redirect Delay="integer" Url="string" />
</xmod:MetaTags>
<div>
<table width="100%">
<tr>
<td width="250" valign="top">
<!-- EMPLOYEES TEMPLATE -->
<xmod:template id="Employees">
<detaildatasource commandtext="SELECT * FROM XMPDemo_Employees WHERE EmployeeId = @EmpID">
<parameter name="EmployeeId" alias="EmpID" />
</detaildatasource>
<detailtemplate>
<h1>Employee Profile</h1>
<h3>[[FirstName]] [[LastName]]</h3>
<h4>Biography:</h4>
<div>[[Bio]]</div>
<xmod:metatags>
<Title>Employee Profile for [[FirstName]] [[LastName]]</Title>
<Keywords append="true">[[FirstName]],[[LastName]]</Keywords>
</xmod:metatags>
</detailtemplate>
</xmod:template>
</td>
</tr>
</table>
</div>