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 8716627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T06:07:47+00:00 2026-06-13T06:07:47+00:00

I am building many textboxes programmatically in my ASP.NET page, after I’ve clicked a

  • 0

I am building many textboxes programmatically in my ASP.NET page, after I’ve clicked a button, I would like to process those values, is there any possibility to retrieve them from their ID in ViewState ?

Here is my code :

Reference of the table in the aspx :

<asp:Table ID="Distances" runat="server" ViewStateMode="Inherit"></asp:Table>

Then in code behind after creating all the rows and cells, I add a textbox into some of them :

Distances.Rows[j].Cells[i].Controls.Add(CreateTB(distance.ToString(), (i + j * rows).ToString(), false));

    protected TextBox CreateTB(string text, string id, bool ebanled = true)
    {
        TextBox tb = new TextBox() { Text = text, ID = id, Enabled = ebanled};
        tb.TextChanged += new EventHandler(OnTBChanged);
        return tb;
    }
  • 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-06-13T06:07:48+00:00Added an answer on June 13, 2026 at 6:07 am

    ViewState is enabled by default, so it should already work that the Text property is persisted across postbacks.

    So you could for example use FindControl("TextBoxID") or enumerate them to get the refernce to the TextBox (assuming that they are added to a container-control like Panel):

    foreach(TextBox txt in MyPanel.Controls.OfType<TextBox>())
    {
        String text = txt.Text;
    }
    

    or

    TextBox txt = (TextBox)MyPanel.FindControl("TextBox1")
    String text = txt.Text;
    

    I assume you’re not recreating those TextBoxes on postbacks. Therefore you need to use the same ID as before and recreate them in Page_Load at the latest stage in page’s life-cycle. So you can create them in an event, but you cannot recreate them there.

    You should show your code where you create them dynamically, then i could be more specific.

    TRULY UNDERSTANDING DYNAMIC CONTROLS

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

Sidebar

Related Questions

I am building many apps for Android and wish to have a menu button
I'm building my first web application after many years of desktop application development (I'm
I am building view based application,which has many pages an in every page ther
I'm working with ASP.NET MVC 2 and building a simple business app. Here are
I'm building a search page that will have many different search parameters that the
I've been building .NET web applications for many years now, and I never use
I am building a Qt based project, and many Qt classes are found in
I am building a WAR/EAR and one of my components reads in many custom
I am building a website to capture data. I have many spreadsheets that are
I am building an article site using django. I've added many to many relation

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.