Dear all,
If I need to insert thousands of records to sql server.e.g
For i as integer = 1 to gridview.count -1
Open sql server connection
Call AddRecord Stored procedure
Close sql server connection
Next
It seems the resource of sql server is dramatically increased by using this approach, any other method is better?