我有一个 ListView 如下:
<asp:ListView runat="server" ID="lvSample">
<LayoutTemplate>
<table id="Table1" runat="server">
.
.
.
</table>
</LayoutTemplate>
<ItemTemplate></ItemTemplate>
</asp:ListView>
如何以编程方式访问 ID 为“Table1”的表?我曾尝试使用 lvSample.Findcontrol("Table1") 但它没有用。此外,我没有看到任何给我表格的列表视图属性。不得不提的是,整个ListView中只有一张表。