I've got a situation whereby I'm processing a number of database records behind an ASP.NET web page (I'm using C# code).
Let's say I'm processing 5000 records.
Rather than have the user simply click a button and then report the work is done on completion (after 5000 record processing) I'd favour the idea of keeping the user up to date with how many records have been processed so far, via means of a progressbar or a simple counter of sorts.
How would I be able to do this ?
Would I need to make use of a thread'ing concept or is there some other (better) way of doing this ?
I need to know the number of records I'm into the process and visually represent this to the user.
Thanks in advance.
Steve
Let's say I'm processing 5000 records.
Rather than have the user simply click a button and then report the work is done on completion (after 5000 record processing) I'd favour the idea of keeping the user up to date with how many records have been processed so far, via means of a progressbar or a simple counter of sorts.
How would I be able to do this ?
Would I need to make use of a thread'ing concept or is there some other (better) way of doing this ?
I need to know the number of records I'm into the process and visually represent this to the user.
Thanks in advance.
Steve