I have an HTML page that upload a fileOfRecords.txt containing item to add to a database (.NET/C# server). Upload the file work fine.
I'm trying to have the server send a status back to the client as each line in the file is being processed.
The controller method will loop thru every row adding the items to the database. On every iteration I would like to send a message to the client with a status whether the it succeeded of failed. Can anyone guide me as to how this is done using jQuery, AJAX, and C#?
Unfortunately I have no code since I have absolutely no idea how to start.