Click here to Skip to main content
15,890,557 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am making asp.net website and there is requirement whatever user delete in entire website one popup like gmail undo option should be there and onclick on that that record should be comes back what to do in this case answer should be useful to entire site i have to do in entire site...............
Posted

Image Processing for Dummies with C# and GDI+ Part 2 - Convolution Filters[^]

This link does not contains undo option implementation, but You could consider using the logic behind this.
 
Share this answer
 
Instead of doing a physical delete do a logical delete. Put a column in your tables structure like IS_DELETE or some thing. When a user delete something then instead of doing a physical delete just mark IS_DELETE of this row as 1. All your searches should be aware of this IS_DELETE column.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900