this is my .aspx page.
<%
@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Multicolumntest._Default" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml" >
<
head runat="server">
<title>Untitled Page</title>
</
head>
<
body>
<form id="form1" runat="server">
<div>
<asp:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<telerik:RadComboBox ID="RadComboBox1" Height="290px" Width="420px" runat="server" Skin="Vista"
onitemsrequested="RadComboBox1_ItemsRequested"
onselectedindexchanged="RadComboBox1_SelectedIndexChanged"
onitemdatabound="RadComboBox1_ItemDataBound">
<
CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
<
HeaderTemplate>
<
table>
<tr>
<td width="100px">
<b>EmployeeName</b>
</td>
<td width="200px">
<b>EmployeeID</b>
</td>
</tr>
</table>
</
HeaderTemplate>
<
ItemTemplate>
</
ItemTemplate>
</
telerik:RadComboBox>
</div>
</form>
</
body>
</
html>
i want to add some items to these columns from windows sharepoint list. so please help me if someone knows about it.
please write C# and .aspx page code
Thanks