tags:

views:

55

answers:

1

i have array

for (int i = 0; i < ds100.Tables[0].Rows.Count; i++)

how to delete multi rocord for each value

using c#, dot.net

A: 

If you are using sql 2005 then you can use xml to insert multiple records.

See this example. http://www.codeproject.com/KB/database/InsertingCollection.aspx

Imran

IBhadelia