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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:30:56+00:00 2026-05-15T10:30:56+00:00

How can table controls be copied? table2=table1? ASP.NET C# Visual Studio 2008 table control.

  • 0

How can table controls be copied?

table2=table1?

ASP.NET C# Visual Studio 2008 table control.

The reason is that it works for strings. Assume the below strings to be tables.

string full; 
string userinput;
full = full + userinput;
  • 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-15T10:30:57+00:00Added an answer on May 15, 2026 at 10:30 am

    Edit: Since answering this question back in June 2010, I have spent a lot of time using jQuery to do this kind of thing on the client. If interested in this approach, look into the jQuery clone() and append(), after(), before() and related methods.
    End Edit

    No, you can’t. Table, like any other control, is a reference type. It means that copying it just copies a reference to the real object instance. Because it doesn’t implement System.ICloneable you have to create a new one and then copy properties manually one by one.

    I would be curious to know why you are trying to do this, because it doesn’t seem to follow any of the best practices that I am familiar with. Could you describe what you are trying to do?

    One thing you could do is copy the contents of a table, although this won’t copy the other properties such as styles and cell-padding etc:

        protected void CopyTable()
        {
            var clontable= new HtmlTable();
            var mytbl = form1.FindControl("mytable") as HtmlTable;
            if (mytbl != null)
            {
                HtmlTableRow myrow;
                HtmlTableCell mycell;
    
                for (int i = 0; i < mytbl.Rows.Count - 1; i++)
                {
                    myrow = new HtmlTableRow();
                    for (int j = 0; j < mytbl.Rows[i].Cells.Count - 1; j++)
                    {
                        mycell = new HtmlTableCell();
                        mycell.InnerHtml = mytbl.Rows[i].Cells[j].InnerHtml;
                        myrow.Cells.Add(mycell);
                    }
                    clontable.Rows.Add(myrow);
                }
                form1.Controls.Add(clontable);
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I'd just write a method that did what you describe...… May 15, 2026 at 6:05 pm
  • Editorial Team
    Editorial Team added an answer If you do a File search, you can specify the… May 15, 2026 at 6:05 pm
  • Editorial Team
    Editorial Team added an answer switch(i){ case 'foo': case 'bar': alert('foo or bar'); break; case… May 15, 2026 at 6:05 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.