Link to home
Start Free TrialLog in
Avatar of digitalwise
digitalwise

asked on

Splitting Location of ASP:CheckBoxList

I have a asp:checkboxlist field in my web form.   I really need to have two of them with the same name in different parts of the form.  Is there a way to do that?    

<asp:CheckBoxList ID="cblDCP" runat="server" RepeatDirection="Horizontal" CssClass="hbuttons">
            <asp:ListItem Value="TPM" Text="Third-Party Management" />
        </asp:CheckBoxList>

Open in new window


Other HTML,
Other Form Items

<asp:CheckBoxList ID="cblDCP" runat="server" RepeatDirection="Horizontal" CssClass="hbuttons">
            <asp:ListItem Value="SM" Text="Second Management" />
        </asp:CheckBoxList>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Tapan Pattanaik
Tapan Pattanaik
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial