I have created my own table and am listing all my users in that html table. I have included in the list hyperlinks for editing and deleteing users.
I know that if i use a link control button i can attach a click function to that button and that function will activate when the link is clicked...however how do i dynamically generate these link buttons?
Listview += "<td>Edit</td><td> <asp:LinkButton ID=\"Delete\" runat=\"server\" onclick=\"Delete_Click\">;D</asp:LinkButton></td><td>On/Off</td></tr>"; This is part of the code that i use to generate the link buttons..but they dont display properly in the html page... any ideas?
Go to the complete details ...