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

  • SEARCH
  • Home
  • 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 3675196
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:56:46+00:00 2026-05-19T02:56:46+00:00

I have a parent control that has an instance of a HiddenField child control.

  • 0

I have a parent control that has an instance of a HiddenField child control. I am using CreateChildControls() to add it. Everything works client side including the values being added to the field. However, on postback, the reference to the field is null

here is the code

    protected override void CreateChildControls()
    {
        assignedListField = new HiddenField();
        assignedListField.ID = ClientID + "_HiddenAssignedList";
        assignedListField.EnableViewState = true;

        Controls.Add(assignedListField);
        base.CreateChildControls();
    }

    public IList<DlpItem> GetAssignedItems()
    {
        //assignedListField = FindControl(ClientID + "_HiddenUnassignedList") as HiddenField;
        var TmpAssignedItems = new List<DlpItem>();
        var list = assignedListField.Value;
        var items = list.Split(new string[] { "#" }, StringSplitOptions.RemoveEmptyEntries);
        foreach (var item in items)
        {
            var mix = item.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
            var text = mix[0];
            var id = int.Parse(mix[1]);
            TmpAssignedItems.Add(new DlpItem(text, id));
        }
        return TmpAssignedItems;
    }

I have tried simply relying on the ViewState … then also attempted using FindControl(). Neither works, it comes up as a null reference … any input on what is going here?

  • 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-19T02:56:47+00:00Added an answer on May 19, 2026 at 2:56 am

    As @Sebastian said, if you need to use any of the controls, they may be null because they are not available. However, you can call EnsureChildControls to create the control collection and ensure its there. This does not include the loading of ViewState.

    However, you can’t rely on viewstate if you are having client-side operations affect the data. What you need to do is have your control implement IPostBackDataHandler. In LostPostData, there you need to check for the hidden variable. Using postCollection[ClientID + “_HiddenAssignedList”], you can get the string value posted to the server, and process the results.

    HTH.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that has a few similar controls and the parent contains
I have a parent object called Page that has a List of objects called
When you have parent-child tables and you wish to use a DetailsView to edit
I have a parent object which has a one to many relationship with an
There has to be a simple explanation for this. I have a parent <div>
I have db table with parent child relationship as: NodeId NodeName ParentId ------------------------------ 1
I have a need to close a parent form from within child form from
I have an IList that contains items ( parent first ), they need to
I have a table which defines a child-parent relationship between nodes: CREATE TABLE node
I have a very basic application that has buttons in a toolstrip. When a

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.