<asp:Table ID="tbl1" runat="server" BorderColor="Red" BorderWidth="1px"
CellPadding="2" CellSpacing="2" GridLines="Both" HorizontalAlign="Center">
<asp:TableRow ID="tblrow" runat="server">
<asp:TableCell ID="tblcell1" runat="server" Text='<%#Eval("Name") %>' HorizontalAlign="Right" Wrap="false"></asp:TableCell>
<asp:TableCell ID="tblcell2" runat="server" Text='<%#Eval("Unique ID") %>' HorizontalAlign="Right" VerticalAlign="Middle"></asp:TableCell>
</asp:TableRow>
</asp:Table>
now i need to pass my storedprocedure to this tableid..how its possible
tbl1.datasource=storedprocedure
tbl1.databind()
here table not acceptin datasource..hw to proceed