I am trying to create a simple user control that is a slider. When I add a AjaxToolkit SliderExtender to the user control I get this (*&$#()@# error:

Server Error in '/' Application. The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>). Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[HttpException (0x80004005): The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).]    System.Web.UI.ControlCollection.Add(Control child) +8677431    AjaxControlToolkit.ScriptObjectBuilder.RegisterCssReferences(Control control) in d:\E\AjaxTk-AjaxControlToolkit\Release\AjaxControlToolkit\ExtenderBase\ScriptObjectBuilder.cs:293 AjaxControlToolkit.ExtenderControlBase.OnLoad(EventArgs e) in d:\E\AjaxTk-AjaxControlToolkit\Release\AjaxControlToolkit\ExtenderBase\ExtenderControlBase.cs:306 System.Web.UI.Control.LoadRecursive()
+50    System.Web.UI.Control.LoadRecursive()
+141    System.Web.UI.Control.LoadRecursive()
+141    System.Web.UI.Control.LoadRecursive()
+141    System.Web.UI.Control.LoadRecursive()             
+141    System.Web.UI.Control.LoadRecursive()
+141    System.Web.UI.Control.LoadRecursive()
+141    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627


Version Information: Microsoft .NET Framework Version:2.0.50727.3074; ASP.NET Version:2.0.50727.3074

I have tried putting a placeholder in the user control and adding the textbox and slider extender to the placeholder programmatically and I still get the error.

Here is the simple code:

<table cellpadding="0" cellspacing="0" style="width:100%">
<tbody>
    <tr>
        <td></td>
        <td>
            <asp:Label ID="lblMaxValue" runat="server" Text="Maximum" CssClass="float_right" />
            <asp:Label ID="lblMinValue" runat="server" Text="Minimum" />
        </td>
    </tr>
    <tr>
        <td style="width:60%;">
            <asp:CheckBox ID="chkOn" runat="server" /><asp:Label ID="lblPrefix" runat="server" />:&nbsp;<asp:Label ID="lblSliderValue" runat="server" />&nbsp;<asp:Label ID="lblSuffix" runat="server" />
        </td>
        <td style="text-align:right;width:40%;">                

                <asp:TextBox ID="txtSlider" runat="server" Text="50" style="display:none;" />
                <ajaxToolkit:SliderExtender ID="seSlider" runat="server" 
                    BehaviorID="seSlider" 
                    TargetControlID="txtSlider" 
                    BoundControlID="lblSliderValue" 
                    Orientation="Horizontal" 
                    EnableHandleAnimation="true" 
                    Length="200" 
                    Minimum="0" 
                    Maximum="100" 
                    Steps="1" />

        </td>
    </tr>
</tbody>

What is the problem?

Thanks in advance.

Dan

link|improve this question

4  
What was causing this error for me was using the <%= Resolve(); %> function inside <script> and <link> tags. I finally fixed this. Rather than removing the offending code in the head tag that usually causes this error. Simply put all the offending code in a <asp:ContentPlaceHolder></asp:ContentPlaceHolder> tag. – Daniel P May 22 '09 at 15:09
feedback

13 Answers

up vote 115 down vote accepted

First, start the code block with <%# instead of <%= :

<head id="head1" runat="server">
  <title>My Page</title>
  <link href="css/common.css" rel="stylesheet" type="text/css" />
  <script type="text/javascript" src="<%# ResolveUrl("~/javascript/leesUtils.js") %>"></script>
</head>

This changes the code block from a Response.Write code block to a databinding expression. Since <%# ... %> databinding expressions aren't code blocks, the CLR won't complain. Then in the code for the master page, you'd add the following:

protected void Page_Load(object sender, EventArgs e)
{
  Page.Header.DataBind();    
}

Check this great solution to the porblem

http://leedumond.com/blog/the-controls-collection-cannot-be-modified-because-the-control-contains-code-blocks/

link|improve this answer
I don't get this error, but I'm using the = notation. However: I've seen my code fail with the above described problem. What can cause that (of why is it working OK with me)? – doekman Jun 28 '10 at 12:43
Are you using .net 4.0 ? – jalchr Jun 29 '10 at 12:50
Awesome. Much better solution than others I have had to use. – Joshua Hudson Sep 20 '10 at 21:48
1  
I seemed to start having this problem after switching to ASP.NET 4. Is it isolated to the new framework? – Corgalore Mar 9 '11 at 18:16
1  
My vote is here too for a fantastic and awesome solution. @jalchr - thanks a lot, I wondering for solution from ages, so lets have some (beer). Thanks man! – Rick Mar 24 at 8:15
show 2 more comments
feedback

I just ran into this problem aswell but found another solution.

I found that wrapping the code blocks with a asp:PlaceHolder-tag solves the problem.

<asp:PlaceHolder runat="server">
  <meta name="ROBOTS" content="<%= this.ViewData["RobotsMeta"] %>" />
</asp:PlaceHolder>

(The CMS I'm using is inserting into the head-section from some code behind which restricted me from adding custom control blocks with various information like meta-tags etc so this is the only way it works for me.)

link|improve this answer
1  
Awesome. As a past user of Telerik controls, I'd often use their "RadCodeBlock" for the same purpose, but was always annoyed by the fact I didn't know of anything besides that (or as others have mentioned, moving the code into a tag made to run server-side). I never knew these placeholders could have content inside of them. Thank you! – JayC Feb 3 at 3:01
feedback

I can confirm that moving the javascript with <% %> tags from the head to the form tag fixes this error

http://italez.wordpress.com/2010/06/22/ajaxcontroltoolkit-calendarextender-e-strana-eccezione/

link|improve this answer
1  
Yes, just confirmed, removing ASP tags <% %> from head fixes this error. – Corgalore Mar 9 '11 at 18:20
feedback

Place the javascript under a div tag.

<div runat="server"> //div tag must have runat server
  //Your Jave script code goes here....
</div>

It'll work!!

link|improve this answer
feedback

I had same issue in the user control. My page that was hosting the control had comments in the head tag, I removed those comments, everything worked afterwards. Some posts also suggest removing scripts from head and placing them in the body.

link|improve this answer
feedback

I tried using <%# %> with no success. Then I changed Page.Header.DataBind(); in my code behind to this.DataBind();, because I used the code in userControl and it dosen't have a header, and it worked fine.

link|improve this answer
feedback

Removing the script from the header tags worked for me.

link|improve this answer
feedback

you can do the same functionality if you are using script manager in your page. you have to just register the script like this

<asp:ScriptManager ID="ScriptManager1" runat="server" LoadScriptsBeforeUI="true"   EnablePageMethods="true">  
<Scripts>
      <asp:ScriptReference Path="~/Styles/javascript/jquery.min.js" />
</Scripts>
</asp:ScriptManager>
link|improve this answer
feedback

I tried using <%# %> with no success. Then I changed Page.Header.DataBind(); in my code behind to this.Header.DataBind(); and it worked fine.

link|improve this answer
feedback

I'm using vb.net and solution with Me.DataBind() and <%# %> works well for me. Appreciate it.

link|improve this answer
feedback

In my case, I have replaced <%= %> with <%# %>, and it worked!

link|improve this answer
feedback

An alternative way is to have another .aspx page act as the page you want to link to.

This is what the header of the Masterpage looks like:

<head runat="server">
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
    <link href="CSS/AccordionStyles.aspx" rel="stylesheet" type="text/css" />
</head>

The referenced .aspx form contains your content:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AccordionStyles.aspx.cs" Inherits="IntranetConnectCMS.CSS.AccordionStyles" %>
.AccordionHeader
{
    cursor: pointer;
    background-image: url(<%=ResolveUrl("~/Images/Backgrounds/AccordionPaneHeaderClosed.png") %>);
    background-repeat: no-repeat;
}

.AccordionHeaderSelected
{
    cursor: pointer;
    background-image: url(<%=ResolveUrl("~/Images/Backgrounds/AccordionPaneHeaderOpen.png") %>);
    background-repeat: no-repeat;
}
.AccordionContent
{
    background-image: url(<%=ResolveUrl("~/Images/Backgrounds/AccordionPaneContent.png") %>);
    background-repeat: no-repeat;
}

Finally, you need the .aspx page to tell the browser you're sending CSS content:

protected void Page_Load(object sender, EventArgs e)
{
    Response.ContentType = "text/css";
}
link|improve this answer
feedback

For some cases ResolveUrl and ResolveClientUrl works but not all times especially in case of js script files. What happens is it works for some pages but when you navigate to some other pages it might not work due to relative path of that particular page.

So finally my suggestion is always do a complete recheck of your site pages for whether all your javascript references are fine or not. Open your site in Google Chrome -> right click on the page -> click view source page -> HTML appears -> now click your JS hyperlinks; if its working fine it should open the js file in another browser window, otherwise it will not open.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.