Template file: Home.page
Class file: Home.php

/ActiveControls/Samples/TActiveLabel/Home.page

<com:TContent ID="body">

<h1>TActiveLabel Samples</h1>

<table class="sampletable">

<tr><td class="samplenote">
An active label text being set as the result of a callback:
</td><td class="sampleaction">
<com:TActiveLabel Text="This is a label" ID="label1"
/>

<com:TActiveButton
	Text="click me"
	OnClick="buttonClicked"
/>
</td></tr>

<tr><td class="samplenote">
Upon button click, the textbox contents will be set on the label. Note that text needs to be properly escaped to avoid html injections:
</td><td class="sampleaction">
<com:TActiveTextBox ID="txt2"
/>
<com:TActiveButton
	Text="=>"
	OnClick="buttonClicked2"
/>
<com:TActiveLabel Text="" ID="label2"
/>
</td></tr>

</table>

</com:TContent>