为了账号安全,请及时绑定邮箱和手机立即绑定

获取GridView行索引 Ver2

标签:
JavaScript

此篇Insus.NET使用非Javascript获取GridView的行索引。

数据还是使用前一篇的数据来更改。

首先为GridView的控件写OnRowCreated ="GridViewCosmetic_RowCreated"

复制代码

 1  Protected Sub GridViewCosmetic_RowCreated(sender As Object, e As GridViewRowEventArgs) 2         If e.Row.RowType = DataControlRowType.DataRow Then 3             If e.Row.FindControl("LinkButton1") IsNot Nothing Then 4                 Dim link As LinkButton = DirectCast(e.Row.FindControl("LinkButton1"), LinkButton) 5                 AddHandler link.Click, AddressOf link_click 6             End If 7         End If 8     End Sub 9 10     Private Sub link_click(sender As Object, e As EventArgs)11         Dim link As LinkButton = DirectCast(sender, LinkButton)12         Dim gvr As GridViewRow = DirectCast(link.Parent.Parent, GridViewRow)13 14         Response.Write("<scr" & "ipt>alert('你选择的行索引是:" & gvr.RowIndex & "')</scr" & "ipt>")15     End Sub

复制代码

 

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消