DataList就在需要的地方加入这么一个Label就可以了,主要的地方就是那个Container.ItemIndex+1,+1是因为DataList的编号是从0开始的
<asp:Label ID="lblQNum" runat="server" Text='<%# Container.ItemIndex+1 %>' Font-Bold="True"></asp:Label>
GridView也类似,稍微有点点不同,注意是DataItemIndex
<asp:Label ID="lblSNum" runat="server" Text='<%# Container.DataItemIndex+1 %>'></asp:Label>
转载于:https://www.cnblogs.com/mFrog/archive/2008/06/04/1213168.html