Click here to Skip to main content
15,904,339 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to insert linkbuttons/buttons with in the checkboxlist control in Asp.net.Can Any one Help this.
Posted

As per my knowledge you can add client side controls. but not server controls.

see below code :

XML
<asp:CheckBoxList runat="server" >
    <Items>
        <asp:ListItem Value="1">
            <a href="http://www.codeproject.com">Code Project</a>
        </asp:ListItem>
    </Items>
</asp:CheckBoxList>
 
Share this answer
 
Comments
[no name] 30-Oct-13 9:49am    
i am binding the data from database to the Checkboxlist control after the checkboxlist control
after the Each item one linkbutton/button should be displayed.when click that button one PopUp shold be displayed.this is my Requirement.
Can you give any suggestion for that. please
You can try alternatives like adding hyperlink as Suggested by CodeBlack.

Check this link

http://www.mindfiresolutions.com/Simple-way-to-add-hyperlinks-to-CheckBoxList-listitems-in-ASPNET-1364.php[^]

Hope this helps
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900