how can i set the text property of the RadPanelItem using the inline c# code block? my code line is below. the variables are declared as global "protected string" in the c# code.
<
telerik:RadPanelBar
runat
=
"server"
ID
=
"RadPanelBar1"
Skin
=
"Web20"
>
<
Items
>
<
telerik:RadPanelItem
Text
=
"Quick Links"
Expanded
=
"true"
PreventCollapse
=
"true"
>
<
Items
>
<
telerik:RadPanelItem
Text="<%= textProperty %>" NavigateUrl="<%= urlProperty %>" />
</
Items
>
</
telerik:RadPanelItem
>
</
Items
>
</
telerik:RadPanelBar
>