Asp.net controls are not accessible in code behind

后端 未结 26 1193
慢半拍i
慢半拍i 2020-12-15 16:25

I have a project that was previously built by someone else. When I try to add a new control to the page, I can\'t access it in the code behind. When I try to access it there

26条回答
  •  佛祖请我去吃肉
    2020-12-15 17:06

    protected global::System.Web.UI.WebControls.CheckBox CheckBoxName ;
    

    Add your control id name to your designer.cs and then it will be available in your cs file.

提交回复
热议问题