<
td
id
=
"Td3"
runat
=
"server"
>
</
td
>
<
td
id
=
"Td4"
runat
=
"server"
>
</
td
>
CheckBox Chkbo = new CheckBox();
Chkbo.ID = "chkrms" + a.ToString();
// Div1.Controls.Add(Chkbo);
Td3.Controls.Add(Chkbo);
RadComboBox DropBx = new RadComboBox();
DropBx.ID = "droprms" + b.ToString();
DropBx.Items.Insert(0, new RadComboBoxItem(" -- Select-- ", ""));
DropBx.Items.Insert(1, new RadComboBoxItem("Today", "10000000000001"));
DropBx.Items.Insert(2, new RadComboBoxItem("Yesterday", "10000000000002"));
DropBx.Items.Insert(3, new RadComboBoxItem("This Week", "10000000000003"));
DropBx.Items.Insert(4, new RadComboBoxItem("Last Week", "10000000000004"));
DropBx.Items.Insert(5, new RadComboBoxItem("This Month", "10000000000005"));
DropBx.Items.Insert(6, new RadComboBoxItem("Last Month", "10000000000006"));
DropBx.Items.Insert(7, new RadComboBoxItem("This Quarter", "10000000000007"));
DropBx.Items.Insert(8, new RadComboBoxItem("Last Quarter", "10000000000008"));
DropBx.Items.Insert(9, new RadComboBoxItem("This Year", "10000000000009"));
DropBx.Items.Insert(10, new RadComboBoxItem("Last Year", "10000000000010"));
//Div2.Controls.Add(DropBx);
Td4.Controls.Add(DropBx);
And here is the ajax manger :
<telerik:RadAjaxManager ID="RadAjaxManagerFileUpload" runat="server" EnablePageHeadUpdate="False">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadAjaxManagerFileUpload">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="radgSupAcctFileUploads" />
<telerik:AjaxUpdatedControl ControlID="tlkasycupMultipleFile" />
<telerik:AjaxUpdatedControl ControlID="tlkRadWindowManager" />
<telerik:AjaxUpdatedControl ControlID="tlkasycupSingleFileUpload" />
<telerik:AjaxUpdatedControl ControlID="radtxtUploadName" />
<telerik:AjaxUpdatedControl ControlID="radtxtDescription" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="radgSupAcctFileUploads">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="radgSupAcctFileUploads" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rbtnUploadSingleFile">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="radgSupAcctFileUploads" />
<telerik:AjaxUpdatedControl ControlID="tlkasycupSingleFileUpload" />
<telerik:AjaxUpdatedControl ControlID="tlkRadWindowManager" />
<telerik:AjaxUpdatedControl ControlID="radtxtUploadName" />
<telerik:AjaxUpdatedControl ControlID="radtxtDescription" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
Kindly help me .