解决 The Controls collection cannot be modified because the control contains code blocks
时间:2020-10-22 22:17:54|栏目:.NET代码|点击: 次
在.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();
解决办法如下
1. 将<%= 换为<%#
2. 在.asp或模板页中的Page_Load事件中添加如下代码
复制代码 代码如下:
Page.Header.DataBind();
上一篇:ASP.NET中 PlaceHolder 控件的使用方法
栏 目:.NET代码
本文标题:解决 The Controls collection cannot be modified because the control contains code blocks
本文地址:http://www.codeinn.net/misctech/14561.html