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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:47:12+00:00 2026-05-14T20:47:12+00:00

I have a problem that has been bugging me all day. In my code

  • 0

I have a problem that has been bugging me all day.

In my code I have the following:

private int rowCount
    {
        get { return (int)ViewState["rowCount"]; }
        set { ViewState["rowCount"] = value; }
    }

and a button event

protected void addRow_Click(object sender, EventArgs e)
    {
        rowCount = rowCount + 1;
    }

Then on Page_Load I read that value and create controls accordingly.

I understand the button event fires AFTER the Page_Load fires so the value isn’t updated until the next postback. Real nightmare.

Here’s the entire code:

protected void Page_Load(object sender, EventArgs e)
    {
        string xmlValue = ""; //To read a value from a database
        if (xmlValue.Length > 0)
        {
            if (!Page.IsPostBack)
            {
                DataSet ds = XMLToDataSet(xmlValue);
                Table dimensionsTable = DataSetToTable(ds);
                tablePanel.Controls.Add(dimensionsTable);

                DataTable dt = ds.Tables["Dimensions"];
                rowCount = dt.Rows.Count;
                colCount = dt.Columns.Count;
            }
            else
            {
                tablePanel.Controls.Add(DataSetToTable(DefaultDataSet(rowCount, colCount)));
            }
        }
        else
        {
            if (!Page.IsPostBack)
            {
                rowCount = 2;
                colCount = 4;
            }
            tablePanel.Controls.Add(DataSetToTable(DefaultDataSet(rowCount, colCount)));
        }
    }

    protected void submit_Click(object sender, EventArgs e)
    {
        resultsLabel.Text = Server.HtmlEncode(DataSetToStringXML(TableToDataSet((Table)tablePanel.Controls[0])));
    }
    protected void addColumn_Click(object sender, EventArgs e)
    {
        colCount = colCount + 1;
    }

    protected void addRow_Click(object sender, EventArgs e)
    {
        rowCount = rowCount + 1;
    }

    public DataSet TableToDataSet(Table table)
    {
        DataSet ds = new DataSet();

        DataTable dt = new DataTable("Dimensions");
        ds.Tables.Add(dt);

        //Add headers
        for (int i = 0; i < table.Rows[0].Cells.Count; i++)
        {
            DataColumn col = new DataColumn();
            TextBox headerTxtBox = (TextBox)table.Rows[0].Cells[i].Controls[0];

            col.ColumnName = headerTxtBox.Text;
            col.Caption = headerTxtBox.Text;
            dt.Columns.Add(col);
        }


        for (int i = 0; i < table.Rows.Count; i++)
        {
            DataRow valueRow = dt.NewRow();
            for (int x = 0; x < table.Rows[i].Cells.Count; x++)
            {
                TextBox valueTextBox = (TextBox)table.Rows[i].Cells[x].Controls[0];
                valueRow[x] = valueTextBox.Text;
            }
            dt.Rows.Add(valueRow);
        }

        return ds;
    }

    public Table DataSetToTable(DataSet ds)
    {
        DataTable dt = ds.Tables["Dimensions"];
        Table newTable = new Table();

        //Add headers
        TableRow headerRow = new TableRow();
        for (int i = 0; i < dt.Columns.Count; i++)
        {
            TableCell headerCell = new TableCell();
            TextBox headerTxtBox = new TextBox();
            headerTxtBox.ID = "HeadersTxtBox" + i.ToString();
            headerTxtBox.Font.Bold = true;
            headerTxtBox.Text = dt.Columns[i].ColumnName;

            headerCell.Controls.Add(headerTxtBox);
            headerRow.Cells.Add(headerCell);
        }
        newTable.Rows.Add(headerRow);

        //Add value rows
        for (int i = 0; i < dt.Rows.Count; i++)
        {
            TableRow valueRow = new TableRow();
            for (int x = 0; x < dt.Columns.Count; x++)
            {
                TableCell valueCell = new TableCell();
                TextBox valueTxtBox = new TextBox();
                valueTxtBox.ID = "ValueTxtBox" + i.ToString() + i + x + x.ToString();
                valueTxtBox.Text = dt.Rows[i][x].ToString();

                valueCell.Controls.Add(valueTxtBox);
                valueRow.Cells.Add(valueCell);
            }
            newTable.Rows.Add(valueRow);
        }

        return newTable;
    }

    public DataSet DefaultDataSet(int rows, int cols)
    {
        DataSet ds = new DataSet();
        DataTable dt = new DataTable("Dimensions");
        ds.Tables.Add(dt);


        DataColumn nameCol = new DataColumn();
        nameCol.Caption = "Name";
        nameCol.ColumnName = "Name";
        nameCol.DataType = System.Type.GetType("System.String");
        dt.Columns.Add(nameCol);

        DataColumn widthCol = new DataColumn();
        widthCol.Caption = "Width";
        widthCol.ColumnName = "Width";
        widthCol.DataType = System.Type.GetType("System.String");
        dt.Columns.Add(widthCol);

        if (cols > 2)
        {
            DataColumn heightCol = new DataColumn();
            heightCol.Caption = "Height";
            heightCol.ColumnName = "Height";
            heightCol.DataType = System.Type.GetType("System.String");
            dt.Columns.Add(heightCol);
        }
        if (cols > 3)
        {
            DataColumn depthCol = new DataColumn();
            depthCol.Caption = "Depth";
            depthCol.ColumnName = "Depth";
            depthCol.DataType = System.Type.GetType("System.String");
            dt.Columns.Add(depthCol);
        }
        if (cols > 4)
        {
            int newColCount = cols - 4;
            for (int i = 0; i < newColCount; i++)
            {
                DataColumn newCol = new DataColumn();
                newCol.Caption = "New " + i.ToString();
                newCol.ColumnName = "New " + i.ToString();
                newCol.DataType = System.Type.GetType("System.String");
                dt.Columns.Add(newCol);
            }
        }

        for (int i = 0; i < rows; i++)
        {
            DataRow newRow = dt.NewRow();
            newRow["Name"] = "Name " + i.ToString();
            newRow["Width"] = "Width " + i.ToString();
            if (cols > 2)
            {
                newRow["Height"] = "Height " + i.ToString();
            }
            if (cols > 3)
            {
                newRow["Depth"] = "Depth " + i.ToString();
            }
            dt.Rows.Add(newRow);
        }
        return ds;
    }

    public DataSet XMLToDataSet(string xml)
    {
        StringReader sr = new StringReader(xml);
        DataSet ds = new DataSet();
        ds.ReadXml(sr);

        return ds;
    }

    public string DataSetToStringXML(DataSet ds)
    {
        XmlDocument _XMLDoc = new XmlDocument();
        _XMLDoc.LoadXml(ds.GetXml());

        StringWriter sw = new StringWriter();
        XmlTextWriter xw = new XmlTextWriter(sw);

        XmlDocument xml = _XMLDoc;
        xml.WriteTo(xw);
        return sw.ToString();
    }

    private int rowCount
    {
        get { return (int)ViewState["rowCount"]; }
        set { ViewState["rowCount"] = value; }
    }
    private int colCount
    {
        get { return (int)ViewState["colCount"]; }
        set { ViewState["colCount"] = value; }
    }

EDIT: Here’s my .aspx as well in case you want to try it out in VS.

    <asp:Panel ID="tablePanel" runat="server" CssClass="table-panel" />
    <asp:Label ID="resultsLabel" runat="server" />
    <asp:LinkButton ID="submit" Text="submit" runat="server" onclick="submit_Click" />
    <asp:LinkButton ID="addColumn" Text="Add Column" runat="server" 
        onclick="addColumn_Click" />
    <asp:LinkButton ID="addRow" Text="Add Row" runat="server" onclick="addRow_Click" />

Thanks in advance,

Marko

  • 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-14T20:47:13+00:00Added an answer on May 14, 2026 at 8:47 pm

    OK I’ve solved the problem by following instructions in this post.

    Here’s my final code – feel free to use it if you ever need to create dynamic controls based on a counter.

    Also I wouldn’t mind feedback on the overall coding style, I always appreciate others’ input.

    protected void Page_Load(object sender, EventArgs e)
        {
            string xmlValue = ""; //To read a value from a database
            if (xmlValue.Length > 0)
            {
                if (!Page.IsPostBack)
                {
                    DataSet ds = XMLToDataSet(xmlValue);
                    Table dimensionsTable = DataSetToTable(ds);
                    tablePanel.Controls.Add(dimensionsTable);
    
                    DataTable dt = ds.Tables["Dimensions"];
                    rowCount = dt.Rows.Count;
                    colCount = dt.Columns.Count;
                }
                else
                {
                    tablePanel.Controls.Add(DataSetToTable(DefaultDataSet(rowCount, colCount)));
                }
            }
            else
            {
                if (!Page.IsPostBack)
                {
                    rowCount = 2;
                    colCount = 4;
                }
                else
                {
                    if (GetPostBackControl(this.Page).ID == "addRow")
                    {
                        rowCount = rowCount + 1;
                    }
                    else if (GetPostBackControl(this.Page).ID == "addColumn")
                    {
                        colCount = colCount + 1;
                    }
                }
                tablePanel.Controls.Add(DataSetToTable(DefaultDataSet(rowCount, colCount)));
            }
        }
    
        protected void submit_Click(object sender, EventArgs e)
        {
            resultsLabel.Text = Server.HtmlEncode(DataSetToStringXML(TableToDataSet((Table)tablePanel.Controls[0])));
        }
        protected void addColumn_Click(object sender, EventArgs e)
        {
    
        }
    
        protected void addRow_Click(object sender, EventArgs e)
        {
    
        }
    
        public DataSet TableToDataSet(Table table)
        {
            DataSet ds = new DataSet();
    
            DataTable dt = new DataTable("Dimensions");
            ds.Tables.Add(dt);
    
            //Add headers
            for (int i = 0; i < table.Rows[0].Cells.Count; i++)
            {
                DataColumn col = new DataColumn();
                TextBox headerTxtBox = (TextBox)table.Rows[0].Cells[i].Controls[0];
    
                col.ColumnName = headerTxtBox.Text;
                col.Caption = headerTxtBox.Text;
                dt.Columns.Add(col);
            }
    
    
            for (int i = 0; i < table.Rows.Count; i++)
            {
                DataRow valueRow = dt.NewRow();
                for (int x = 0; x < table.Rows[i].Cells.Count; x++)
                {
                    TextBox valueTextBox = (TextBox)table.Rows[i].Cells[x].Controls[0];
                    valueRow[x] = valueTextBox.Text;
                }
                dt.Rows.Add(valueRow);
            }
    
            return ds;
        }
    
        public Table DataSetToTable(DataSet ds)
        {
            DataTable dt = ds.Tables["Dimensions"];
            Table newTable = new Table();
    
            //Add headers
            TableRow headerRow = new TableRow();
            for (int i = 0; i < dt.Columns.Count; i++)
            {
                TableCell headerCell = new TableCell();
                TextBox headerTxtBox = new TextBox();
                headerTxtBox.ID = "HeadersTxtBox" + i.ToString();
                headerTxtBox.Font.Bold = true;
                headerTxtBox.Text = dt.Columns[i].ColumnName;
    
                headerCell.Controls.Add(headerTxtBox);
                headerRow.Cells.Add(headerCell);
            }
            newTable.Rows.Add(headerRow);
    
            //Add value rows
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                TableRow valueRow = new TableRow();
                for (int x = 0; x < dt.Columns.Count; x++)
                {
                    TableCell valueCell = new TableCell();
                    TextBox valueTxtBox = new TextBox();
                    valueTxtBox.ID = "ValueTxtBox" + i.ToString() + i + x + x.ToString();
                    valueTxtBox.Text = dt.Rows[i][x].ToString();
    
                    valueCell.Controls.Add(valueTxtBox);
                    valueRow.Cells.Add(valueCell);
                }
                newTable.Rows.Add(valueRow);
            }
    
            return newTable;
        }
    
        public DataSet DefaultDataSet(int rows, int cols)
        {
            DataSet ds = new DataSet();
            DataTable dt = new DataTable("Dimensions");
            ds.Tables.Add(dt);
    
    
            DataColumn nameCol = new DataColumn();
            nameCol.Caption = "Name";
            nameCol.ColumnName = "Name";
            nameCol.DataType = System.Type.GetType("System.String");
            dt.Columns.Add(nameCol);
    
            DataColumn widthCol = new DataColumn();
            widthCol.Caption = "Width";
            widthCol.ColumnName = "Width";
            widthCol.DataType = System.Type.GetType("System.String");
            dt.Columns.Add(widthCol);
    
            if (cols > 2)
            {
                DataColumn heightCol = new DataColumn();
                heightCol.Caption = "Height";
                heightCol.ColumnName = "Height";
                heightCol.DataType = System.Type.GetType("System.String");
                dt.Columns.Add(heightCol);
            }
            if (cols > 3)
            {
                DataColumn depthCol = new DataColumn();
                depthCol.Caption = "Depth";
                depthCol.ColumnName = "Depth";
                depthCol.DataType = System.Type.GetType("System.String");
                dt.Columns.Add(depthCol);
            }
            if (cols > 4)
            {
                int newColCount = cols - 4;
                for (int i = 0; i < newColCount; i++)
                {
                    DataColumn newCol = new DataColumn();
                    newCol.Caption = "New " + i.ToString();
                    newCol.ColumnName = "New " + i.ToString();
                    newCol.DataType = System.Type.GetType("System.String");
                    dt.Columns.Add(newCol);
                }
            }
    
            for (int i = 0; i < rows; i++)
            {
                DataRow newRow = dt.NewRow();
                newRow["Name"] = "Name " + i.ToString();
                newRow["Width"] = "Width " + i.ToString();
                if (cols > 2)
                {
                    newRow["Height"] = "Height " + i.ToString();
                }
                if (cols > 3)
                {
                    newRow["Depth"] = "Depth " + i.ToString();
                }
                dt.Rows.Add(newRow);
            }
            return ds;
        }
    
        public DataSet XMLToDataSet(string xml)
        {
            StringReader sr = new StringReader(xml);
            DataSet ds = new DataSet();
            ds.ReadXml(sr);
    
            return ds;
        }
    
        public string DataSetToStringXML(DataSet ds)
        {
            XmlDocument _XMLDoc = new XmlDocument();
            _XMLDoc.LoadXml(ds.GetXml());
    
            StringWriter sw = new StringWriter();
            XmlTextWriter xw = new XmlTextWriter(sw);
    
            XmlDocument xml = _XMLDoc;
            xml.WriteTo(xw);
            return sw.ToString();
        }
    
        private int rowCount
        {
            get { return (int)ViewState["rowCount"]; }
            set { ViewState["rowCount"] = value; }
        }
        private int colCount
        {
            get { return (int)ViewState["colCount"]; }
            set { ViewState["colCount"] = value; }
        }
        public static Control GetPostBackControl(Page page)
        {
            Control control = null;
    
            string ctrlname = page.Request.Params.Get("__EVENTTARGET");
            if (ctrlname != null && ctrlname != string.Empty)
            {
                control = page.FindControl(ctrlname);
            }
            else
            {
                foreach (string ctl in page.Request.Form)
                {
                    Control c = page.FindControl(ctl);
                    if (c is System.Web.UI.WebControls.Button)
                    {
                        control = c;
                        break;
                    }
                }
            }
            return control;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 384k
  • Answers 384k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer try setting the instance mode to server only GMap.NET.GMaps.Instance.Mode =… May 14, 2026 at 11:16 pm
  • Editorial Team
    Editorial Team added an answer You have not specified a year in your string. The… May 14, 2026 at 11:16 pm
  • Editorial Team
    Editorial Team added an answer problem was in broken page inspector.. so whene I go… May 14, 2026 at 11:16 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.