将List<string>绑定到asp.net 3.5中的Listview,可以通过以下步骤实现:
以下是示例代码:
ASP.NET 3.5代码:
<asp:ListView ID="ListView1" runat="server">
<LayoutTemplate>
<table>
<tr>
<th>字符串列表</th>
</tr>
<tr runat="server" id="itemPlaceholder"></tr>
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td><%# Container.DataItem %></td>
</tr>
</ItemTemplate>
</asp:ListView>
后端代码:
List<string> stringList = new List<string> { "string1", "string2", "string3" };
ListView1.DataSource = stringList;
ListView1.DataBind();
这样就可以将List<string>绑定到asp.net 3.5中的Listview控件中,并显示出来。
推荐的腾讯云相关产品:
产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云