Aspdotnet-Suresh

aspdotnet-suresh offers C#.net articles and tutorials,csharp dot net,asp.net articles and tutorials,VB.NET Articles,Gridview articles,code examples of asp.net 2.0 /3.5,AJAX,SQL Server Articles,examples of .net technologies

C# - Delete Particular Row from Datatable | Delete Selected Row From DataTable in Asp.net

Jan 30, 2013
Introduction:

Here I will explain how to delete particular row from datatable or delete selected rows from datatable in asp.net using C# and VB.NET.

Description:

In previous articles I explained Check username availability with progressbar, Richtextbox example in asp.net, Asp.net Interview questions, Joins in SQL Server, Highlight Gridview records based on search and many articles relating to Gridview, SQL ,jQuery,asp.net, C#,VB.NET. Now I will explain how to delete particular row from datatable or delete selected rows from datatable in asp.net using C# and VB.NET.

We can delete datatable rows by using delete method for that check below code

C# Code


DataTable dt1 = new DataTable();
dt1 = ds.Tables[0];
for (int i = 0; i < dt.Columns.Count;i++ )
{
if (i == 3)
{
dt.Rows[i - 1].Delete();
dt.AcceptChanges();
}
}
VB.NET Code


Dim dt1 As New DataTable()
dt1 = ds.Tables(0)
For i As Integer = 0 To dt.Columns.Count - 1
If i = 3 Then
dt.Rows(i - 1).Delete()
dt.AcceptChanges()
End If
Next

If you enjoyed this post, please support the blog below. It's FREE!

Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our Facebook, Twitter, RSS feed, or by email.

subscribe by rss Subscribe by RSS subscribe by email Subscribe by Email

4 comments :

Anonymous said...

hi this is sandeep, recently i got job as SE,
so can i have an example on datalist using with all events pleasea.

Unknown said...

Thanks Suresh...Its helpful for me..............

Unknown said...

Hi this is aneev . We cannot assign a error to the datatable for a particular row.

Anonymous said...

good

Give your Valuable Comments

Note: Only a member of this blog may post a comment.

© 2015 Aspdotnet-Suresh.com. All Rights Reserved.
The content is copyrighted to Suresh Dasari and may not be reproduced on other websites without permission from the owner.