Controls collection 解决 The Controls collection cannot be modified because the control contains code
人气:0想了解解决 The Controls collection cannot be modified because the control contains code blocks的相关内容吗,在本文为您仔细讲解Controls collection 的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Controls,collection,下面大家一起来学习吧。
在.aspx或.ascx的如果包括<%= %>,并在.aspx, .ascs中使用了AjaxToolkit中的控件,那么很可能会引发"The Controls collection cannot be modified because the control contains code blocks" 异常, 解决办法如下
1. 将<%= 换为<%#
2. 在.asp或模板页中的Page_Load事件中添加如下代码
复制代码 代码如下:
Page.Header.DataBind();
加载全部内容