Reputation: 1631
I want to process some records one by one , Need to show record number on .aspx page that currently we are processing nth record.
Setting value of nth record in a label does not work as it will be reflecting only after response come back from server (it does not get refreshed for every record - looks like freezing )
Upvotes: 0
Views: 1114
Reputation: 2561
You can use different techniques:
SignalR
to send changes back to client when there was changes on server. You can read about it more here: How SignalR works internally?Choose one that is applicable in your case
Upvotes: 2