I have a table called status.
I would like to show the new data in status table on the page as the new record got inserted…..
For example,
I want to show the status data every time the new record got inserted in the table..
Status table
Start
Process
Finish
Etc..
on web page
1.Start : and if the new recrod got insert
2. Process : show the next record in the table
3......etc
How can I do this in ASP.net C#.. (2008)
Guest UserPosted Jul 25, 2011, 4:44 PM
Zoran HorvatPosted Jul 25, 2011, 11:44 AM
Second approach is to remember one field total, and that can be timestamp of last shown record (if table contains timestamp column), or identity of last shown record, etc. Somethign that would uniquely determine the last row shown. In that case, you show only those rows having this field larger than remembered value, and immediately you update that value.
Second approach is better if you have multiple users, so each user has seen different sets of rows.
Zoran