i'm creating a few radcombobox inside the radpanelbar. i already make connection to database for 1st combobox. how can i do the other connection to other combobox?
this is the 1st combobox for user
<td>
<telerik:RadComboBox ID="RadComboBox1" AllowCustomText="true" runat="server" Width="289px"
Height="200px" DataSourceID="SqlDataSource1" DataTextField="UserName"
EmptyMessage="Search for people...">
</telerik:RadComboBox>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:FingertipsConnectionString %>"
SelectCommand="SELECT [UserName] FROM [AuditTrail] Order By UserName"></asp:SqlDataSource>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadComboBox2">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadComboBox1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
</td> </tr>
this is the 2nd combobox for database. this combobox i want to connect to database to get the content from column "database"
<td>
<asp:Label runat="server" ID="databaseLabel" AssociatedControlID="RadComboBox3">Database:</asp:Label>
</td>
<td>
<telerik:RadComboBox ID="RadComboBox3" AllowCustomText="true" runat="server" Width="289px"
Height="200px" DataSourceID="SqlDataSource2"
EmptyMessage="Search for database...">
</telerik:RadComboBox>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:FingertipsConnectionString %>"
SelectCommand="SELECT [Database] FROM [AuditTrail]"></asp:SqlDataSource>
</td>