Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm just starting a new project and I am getting some really weird stuff happening.

ASP.NET 3.5, VS2008.

I've tried rebuild, close VS, delete everything and get from svn again but I cannot understand why the repeater in the following is null on page_load.

I know this is going to be a headslapping moment. Help me out?

Markup:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="GalleryControl.ascx.cs" Inherits="Site.UserControls.GalleryControl" %>
<asp:Repeater ID="rptGalleries" runat="server">
    <HeaderTemplate><ul></HeaderTemplate>
    <ItemTemplate>
       <li>wqe</li>
    </ItemTemplate>
    <FooterTemplate></ul></FooterTemplate>
</asp:Repeater>

Code behind

public partial class GalleryControl : System.Web.UI.UserControl
{
    protected void Page_Load(object sender, EventArgs e)
    {
        rptGalleries.DataSource = new[] {1, 2, 3, 4, 5};
        rptGalleries.DataBind();
    }
}

Designer:

  public partial class GalleryControl {

    /// <summary>
    /// rptGalleries control.
    /// </summary>
    /// <remarks>
    /// Auto-generated field.
    /// To modify move field declaration from designer file to code-behind file.
    /// </remarks>
    protected global::System.Web.UI.WebControls.Repeater rptGalleries;
}

Why is my repeater null? What the F is going on?

The referencing page has this:

<ux:GalleryControl runat="server" ID="uxGalleryControl"/>

The web.config has this (I've never had to do this before but my masterpage was complaining about not finding another user control).

<add tagPrefix="ux" namespace="Site.UserControls" assembly="Site" />
share|improve this question
Very strange. Did you check your .aspx.designer.cs file for the repeater control? Maybe for some reason the designer didnt autogenerate the reference? Ive seen that happen before. – RPM1984 Jun 10 '10 at 0:50
yep it's there. Updated question. – Rob Stevenson-Leggett Jun 10 '10 at 0:54
I've just tried creating an entirely new control with the same effect. The page that references this has a DropDownList on it which is fine. – Rob Stevenson-Leggett Jun 10 '10 at 0:58
I've added a textbox to the usercontrol and that is also null... definitely something wrong with usercontrols loading in this project... – Rob Stevenson-Leggett Jun 10 '10 at 1:02
How are you instantiating the control? – Amy Jun 10 '10 at 1:04
show 3 more comments

1 Answer

up vote 7 down vote accepted

After hours of head banging I have finally figured this out.

I was referencing the User controls in the web config as stated (I also tried the Register method with the Assembly). I think there's a weirdness with this method when the controls are in the same assembly. So referencing them like this:

<%@ Register Src="~/UserControls/GalleryControl.ascx" TagPrefix="ux" TagName="GalleryControl" %>

Worked immediately.

I hope anyone else with the same problem finds this useful.

share|improve this answer
Thanks, solved my problem straight away! – John Mar 7 '12 at 9:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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