I want to create one html table. that table contains 2 columns like teamName,TeamMember..
TeamName colums like label and Teammember columns like checkboxlist.
how to create and bind ?
in aspx page my code like
<table id="table1" border="1" align="center" > <tr> <th>TeamName</th> <th>TeamMember</th> </tr> <tr> <td> <asp:Label ID ="lbl1" runat="server" ></asp:Label> </td> <td> <asp:CheckBoxList ID="cblbind" runat ="server" ></asp:CheckBoxList> </td> </tr> </table>
how to i bind these table?
in database my Procedure
alter procedure TeamBindingProc
@teamid as int
as
begin
select Teamid,TeamName from Team
select UserId,TeamID,(select Nickname From ...

Go to the complete details ...