Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > C#/.NET入门教程

gridview行索引获取方法及实现代码(非js版)

来源:中文源码网    浏览:136 次    日期:2024-05-17 02:24:56
【下载文档:  gridview行索引获取方法及实现代码(非js版).txt 】


gridview行索引获取方法及实现代码(非js版)
前一版本//www.zwyuanma.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("alert('你选择的行索引是:" & gvr.RowIndex & "')") End Sub

相关内容