<%@ Page Language="C#" %>
<!DOCTYPE html>
<
head
runat
=
"server"
>
<
title
>Telerik ASP.NET Example</
title
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"styles.css"
/>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
runat
=
"server"
ID
=
"RadScriptManager1"
/>
<
telerik:RadSkinManager
ID
=
"RadSkinManager1"
runat
=
"server"
ShowChooser
=
"true"
/>
<
div
class
=
"demo-container size-narrow"
>
<
telerik:RadListBox
RenderMode
=
"Lightweight"
runat
=
"server"
ID
=
"RadListBox1"
SelectionMode
=
"Multiple"
TabIndex
=
"1"
ToolTip
=
"Source list"
AllowReorder
=
"true"
AccessKey
=
"y"
Height
=
"250"
AllowDelete
=
"true"
Width
=
"225px"
AllowTransfer
=
"true"
TransferToID
=
"RadListBox2"
>
<
ButtonSettings
ShowDelete
=
"false"
RenderButtonText
=
"true"
></
ButtonSettings
>
<
Items
>
<
telerik:RadListBoxItem
Text
=
"Amsterdam"
/>
<
telerik:RadListBoxItem
Text
=
"Barcelona"
/>
<
telerik:RadListBoxItem
Text
=
"Bonn"
/>
<
telerik:RadListBoxItem
Text
=
"Boston"
/>
<
telerik:RadListBoxItem
Text
=
"Brussels"
/>
<
telerik:RadListBoxItem
Text
=
"Dallas"
/>
<
telerik:RadListBoxItem
Text
=
"Denver"
/>
<
telerik:RadListBoxItem
Text
=
"Dublin"
/>
<
telerik:RadListBoxItem
Text
=
"Liverpool"
/>
<
telerik:RadListBoxItem
Text
=
"London"
/>
<
telerik:RadListBoxItem
Text
=
"Madrid"
/>
<
telerik:RadListBoxItem
Text
=
"Miami"
/>
<
telerik:RadListBoxItem
Text
=
"Moscow"
/>
<
telerik:RadListBoxItem
Text
=
"New York"
/>
<
telerik:RadListBoxItem
Text
=
"Oslo"
/>
<
telerik:RadListBoxItem
Text
=
"Paris"
/>
<
telerik:RadListBoxItem
Text
=
"San Francisco"
/>
<
telerik:RadListBoxItem
Text
=
"Seattle"
/>
<
telerik:RadListBoxItem
Text
=
"Sofia"
/>
<
telerik:RadListBoxItem
Text
=
"St.Paul"
/>
</
Items
>
</
telerik:RadListBox
>
<
telerik:RadListBox
RenderMode
=
"Lightweight"
runat
=
"server"
ID
=
"RadListBox2"
Width
=
"225"
Height
=
"250"
TabIndex
=
"2"
ToolTip
=
"Destination list"
SelectionMode
=
"Multiple"
>
</
telerik:RadListBox
>
</
div
>
<
asp:LinkButton
ID
=
"LinkButton1"
runat
=
"server"
OnClick
=
"LinkButton1_Click"
Text
=
"Validate with WAVE"
/>
<
script
runat
=
"server"
>
protected void LinkButton1_Click(object sender, EventArgs e)
{
}
</
script
>
</
form
>
</
body
>
</
html
>