summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TRepeater/Sample4.page
blob: 3f5248be164e78cc8d796a1f0adb660d0672db1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<com:TContent ID="body">

<h1>TRepeater Sample 4</h1>

<p>Please enter the URL of your favorite websites in the following:</p>
<com:TRepeater ID="Repeater"
	OnItemCreated="itemCreated"
	ItemRenderer="TTextBox"
	/>

<br/>

<com:TButton Text="Submit" OnClick="buttonClicked" />

<br/><br/>

<com:TLabel Text="You have entered the following URLs:" 
	Visible="<%= $this->IsPostBack %>" />
<br/>

<com:TRepeater ID="Repeater2"
	OnItemCreated="itemCreated"
	ItemRenderer="THyperLink"
	/>


</com:TContent>