I have a button clicking which a storedproc runs for long time in buttons onclick event.
I have a grid which will show log table data which gets updated by the storedproc.
I want to refresh the grid to show the updated log while the storedproc runs.
Is it possible?
If yes plz help.
Execute your query using async queries. While this is running update your grid.
When using commands to execute the query you can use code like this:
This will run the query without waiting for the result.