标签:style blog http color io ar sp 文件 div
在一个.aspx文件中添加下面的代码:
<%=EnabledFileType%>
出现错误提示:
System.Web.HttpException (0x80004005):
控件包含代码块(即 <% ... %>),因此无法修改控件集合。
在 System.Web.UI.ControlCollection.Add(Control child)
对应的英文错误为:
The Controls collection cannot be modified because the control contains code blocks
解决方法:
改为如下的代码(等号改为井号):
<%#EnabledFileType%>
并在Page_Load中添加如下的代码:
private void Page_Load(object sender, System.EventArgs e)
{
this.DataBind();
}
搞定!
标签:style blog http color io ar sp 文件 div
原文地址:http://www.cnblogs.com/dudu/p/controls-collection-cannot-be-modified.html