2016-08-12 135 views

回答

1

您是否尝试过使用FindControl方法?

Literal l = FindControl("control id"); 

if(l != null) 
{ 
    //do your processing 
} 
+0

非常感谢.... – j4rey89

相关问题