This is a migrated thread and some comments may be shown as answers.

Check Box assign values geting in td

0 Answers 25 Views
Filter
This is a migrated thread and some comments may be shown as answers.
mohamed
Top achievements
Rank 1
mohamed asked on 20 Sep 2012, 12:59 PM
<td id="Td3" runat="server">                                                                  
</td>
<td id="Td4" runat="server">                                                                  
</td>

I bind the check box and combo box in td that assign fine and then
how i get the values server side ,

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);
Thanks Advance,
Mohamed.

No answers yet. Maybe you can help?

Tags
Filter
Asked by
mohamed
Top achievements
Rank 1
Share this question
or