为DataList和GridView内容项添加序号

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 >

你可能感兴趣的:(GridView)