How to add multiple rows on the datatable.
-
hi,, I'm new in .Net, any one help me... how to add multiple rows on the single datatable. without using SQL-Server. I need to add the multiple textbox values to the Datatable. Thanks.
Why do you need to add rows to a data table without using SQL Server ? Is this a homework assignment ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
hi,, I'm new in .Net, any one help me... how to add multiple rows on the single datatable. without using SQL-Server. I need to add the multiple textbox values to the Datatable. Thanks.
what are you exactly looking for. If datatable schema is defined use DataRow dr = dt.NewRow() then assign values to the fields of dr. Finally dt.Rows.add(dr); you are done. :rose:
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templates