冬天是美丽的,冬天的雪花是雪白的,;冬天,是快乐的。冬天迈着轻盈的脚步向我们走来,秋天挥挥手向我们告别。冬天的雪花,它是大地妈妈最好的装饰品,是树姐姐的快乐精灵。
前一版本//www.haodaima.com/article/33251.htm是用Javascript获取GridView的行索引。此篇Insus.NET使用非Javascript获取GridView的行索引。 数据还是使用前一篇的数据来更改。
首先为GridView的控件写OnRowCreated ="GridViewCosmetic_RowCreated"
Protected Sub GridViewCosmetic_RowCreated(sender As Object, e As GridViewRowEventArgs)
If e.Row.RowType = DataControlRowType.DataRow Then
If e.Row.FindControl("LinkButton1") IsNot Nothing Then
Dim link As LinkButton = DirectCast(e.Row.FindControl("LinkButton1"), LinkButton)
AddHandler link.Click, AddressOf link_click
End If
End If
End Sub
Private Sub link_click(sender As Object, e As EventArgs)
Dim link As LinkButton = DirectCast(sender, LinkButton)
Dim gvr As GridViewRow = DirectCast(link.Parent.Parent, GridViewRow)
Response.Write("<scr" & "ipt>alert('你选择的行索引是:" & gvr.RowIndex & "')</scr" & "ipt>")
End Sub
到此这篇关于gridview行索引获取方法及实现代码(非js版)就介绍到这了。走过春夏秋冬,走过风霜雪;走过坎坷不平;相信你一定会鲜花和掌声;遇见温暖和;遇见更加优秀的自己。因为风雨人生路,每一步都算数!更多相关gridview行索引获取方法及实现代码(非js版)内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!