服务器之家

服务器之家 > 正文

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

时间:2019-10-16 10:51     来源/作者:asp.net教程网

前一版本http://www.zzvips.com/article/19238.html是用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 

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部