C# repeater控件里添加序号的4种方法

分类:.Net知识问答| 发布:camnprbubuol| 查看:1015 | 发表时间:2010/12/28

11、<itemtemplate>
2  <tr><td>
3 
4  <%# Container.ItemIndex + 1%>
5 
6  </td></tr>
7 
8  </itemtemplate>
12、<itemtemplate>
2  <tr><td>
3 
4  <%# this.rpResult.Items.Count + 1%>
5 
6  </td></tr>
7 
8  </itemtemplate>

两种其它方法:

在<form></form>中添加<Label ID="dd" ></Label>

<body nload="show()">

01<Script. Language="JScript">
02   function show()
03 
04   {
05 
06  var bj = document.all.tags("LABEL");
07 
08  for (i=0;i<obj.length;i++)
09 
10  {
11 
12  document.all["dd"][i].innerHTML=i+1;
13 
14  }
15 
16   }
17 
18   </script>

4、后台实现方法

后台实现方法:

在.aspx里添加<asp:Label id="Label1" Runat="server"></asp:Label>

在.cs里添加

1** void InitializeComponent()
2  this.Repeater1.ItemDataBound += new System.Web.UI.WebControls.RepeaterItemEventHandler(this.Repeater1_ItemDataBound);
3 
4   this.Load += new System.EventHandler(this.Page_Load);

}

01** void Repeater1_ItemDataBound(object source, System.Web.UI.WebControls.RepeaterItemEventArgs e)
02  {
03 
04  if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
05 
06   {
07 
08   ((Label)e.Item.FindControl("Label1")).Text = Convert.ToString(e.Item.ItemIndex + 1);
09 
10   }
11 
12  }
365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/net-wiki/146.html