string类型转换为控件对象

方法一:
     Ext.Net.Checkbox Chk = (Ext.Net.Checkbox)Page.FindControl(Name);
 
方法二:
    ((Label)Page.FindControl(Name).Text = "xxx";
原文地址:https://www.cnblogs.com/easypass/p/1883911.html