I have a page that is reading 7000 records from aa text file and importing them in to SQL Server.
And I can't do a bulk import into SQL, don't have permission.
Is there a way to have some kind of indicator as to wher eit is in the progress of this. I litteraly take 5 minutes to load them, so I want something on the screen to show the user where it is.
this does not work until the end then it shows 7095
DougP
And I can't do a bulk import into SQL, don't have permission.
Is there a way to have some kind of indicator as to wher eit is in the progress of this. I litteraly take 5 minutes to load them, so I want something on the screen to show the user where it is.
this does not work until the end then it shows 7095
Code:
While True
counter += 1
If Counter Mod 100 Then
Me.lblResult.Text = "Imported so Far: " & Counter.ToString
End If
End While
DougP