GridView 分页器模板内的访问控制 - ASP.NET
我正在尝试访问 GridView 中 PagerTemplate 内的 LinkButton。
但是,我收到 NullReferenceException 并且我不知道我在这里做错了什么。
我已经尝试过以下操作...
((LinkButton)GridView1.BottomPagerRow.FindControl("lnkbtnPrevious"));
((LinkButton)GridView1.FindControl("lnkbtnPrevious"));
有人可以帮忙吗?
谢谢!
I am trying to access a LinkButton that is inside a PagerTemplate in a GridView.
However, I am getting a NullReferenceException and I don't know what I am doing wrong here.
I have tried the following...
((LinkButton)GridView1.BottomPagerRow.FindControl("lnkbtnPrevious"));
((LinkButton)GridView1.FindControl("lnkbtnPrevious"));
Can someone please help?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保您已经在 PagerTemplate 中创建了 ID 为“lnkbtnPrevious”且 PagerSettings Position=“Bottom”的链接按钮,以下内容将使您能够访问该链接按钮。
Make sure you have already created the link button in the PagerTemplate with the ID "lnkbtnPrevious" and the PagerSettings Position="Bottom" the following will get you access to the link button.
首先在pagertemplate中为gird创建一个链接按钮
并在 gridview 的数据绑定事件中的代码中给
id= "LB"
工作,
这将起作用
First create a link button in pagertemplate for gird
and give
id= "LB"
work this in code in databound event of gridview
this will work