本文介绍了访问gridview外部的gridview控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



我在gridview项目模板中有一个链接按钮。

如何在外面访问该链接按钮ID gridview。



提前致谢

Venkatesh ..

Hi all,

I have a link button in gridview item template.
How can i access that link button id outside the gridview.

Thanks in advance
Venkatesh..

推荐答案

foreach (GridViewRow gvrow in GridView1.Rows)
{
    LinkButton LinkButton1 = (LinkButton)gvrow.FindControl("LinkButton1");
    if (LinkButton1 != null)
    {
        //Do your operations here. 
    }
}









--Amit





--Amit


这篇关于访问gridview外部的gridview控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 21:57