Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
<
telerik:RadComboBox
ID
=
"RadComboBox1"
runat
"server"
OnLoad
"RadComboBox1_Load"
>
</
asp:SqlDataSource
"SqlDataSource1"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT [id], [text] FROM [Details]">
protected
void
RadComboBox1_Load(
object
sender, EventArgs e)
{
RadComboBox1.DataTextField =
"text"
;
RadComboBox1.DataValueField =
"id"
RadComboBox1.DataSource = SqlDataSource1;
RadComboBox1.DataBind();
RadComboBox1.SelectedIndex = RadComboBox1.Items.Count - 1;
}