DataTable add a column and add rows

Source: Internet
Author: User
DataTable add a column and add rows

int allpage = 100;
DataTable dt = new DataTable (); Create an empty table
Dt.              TableName = "Test"; For this table
Dt.       Columns.Add ("pagenumber"); Add a field named PageNumber to this table.
Dt.    Columns.Add ("Graphpagename"); Add a field named Graphpagename to this table.

for (int i = 1; I <= allpage;i++)
{
DataRow dr = dt.        NewRow (); Add a row to this table
dr["pagenumber"] = "First" + i + "page";
dr["graphpagename"] = "unnamed"; //
Dt.                Rows.Add (DR); Add this line to the table
}
This.dataGridView1.DataSource = DT;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.