Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7003733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:06:26+00:00 2026-05-27T21:06:26+00:00

I have a simple asp.net user control: <%@ Control Language=C# AutoEventWireup=true CodeBehind=QueryDefinitionItem.ascx.cs Inherits=xxx.UserControls.QueryDefinitionItem %>

  • 0

I have a simple asp.net user control:

<%@ Control Language="C#" AutoEventWireup="true" 
    CodeBehind="QueryDefinitionItem.ascx.cs"
    Inherits="xxx.UserControls.QueryDefinitionItem" %>
    <link href="../Styles/Site.css" rel="stylesheet" type="text/css" />
    <div class="title">
      <h1 id="TextField" runat="server"></h1>
    </div>

Code behind:

 public partial class QueryDefinitionItem : System.Web.UI.UserControl
{
    private string m_text;
    protected void Page_Load(object sender, EventArgs e)
    {
        TextField.InnerText = m_text;
    }

    public void SetText(string text)
    {
        m_text = text;
    }
}

I use LoadControl to load one instance programatically:

protected void Page_Load(object sender, EventArgs e)
    {
        var control = (QueryDefinitionItem)LoadControl(typeof (QueryDefinitionItem),null);
        control.SetText("test2");
        itemsPanel.Controls.Add(control);}

I then use the SetText function to set the text and once the Page Load is fired I get a NullReferenceException that says TextField is null…

I cant figure out why.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:06:27+00:00Added an answer on May 27, 2026 at 9:06 pm

    You should have to use LoadControl(string) method instead of LoadControl(Type,Param) and store value directly to the HtmlControl. (There is bug take a look at connect).

    protected void Page_Load(object sender, EventArgs e)
    {
    }
    public void SetText(string text)
    {
      TextField.InnerText = text;
    }
    

    Or create a property,

       public string Text
        {
          get { return TextField.InnerText; }
          set { TextField.InnerText=value;  }
        }
    

    Use Page_Init or Page_Load event to create controls dynamically.

    protected void Page_Load(object sender, EventArgs e)
      {
      var control = (QueryDefinitionItem)LoadControl("~/QueryDefinitionItem.ascx");
      control.SetText("test2");
      itemsPanel.Controls.Add(control);
      }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple ASP.NET Web User Control. It looks like this: <%@ Control
I have a fairly simple ASP.NET 2.0 menu control using a sitemap file and
I have created a simple Asp.Net custom control which automatically combines all the correct
I have a simple ASP.NET page where after the initial page load the user
I have an ASP.NET page with two instances of the same Web User Control
I have an ASP.NET 4.0 application with some simple user controls. The user controls
I have a scenario where I have a container control (basically a ASP.Net user
I have to integrate a Java applet into a simple asp.net 2.0 control. This
I have a partial view (UserControl) that implements a simple pager in my Asp.Net
I have a simple ASP.NET 3.5 SP1 Web Forms app... I've added the System.Web.Routing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.