vote up 0 vote down star

Can anyone help me in this. Am using Asp.NET WITH C#. I am have an number of products in my database. When I run my code all the products values are stored in a database table. Without an exit button, if I close my application, when I run for second time the database table should be empty. I CANT USE !PAGE.ISPOSTBACK because I add different products at single run time, which will delete for single users. Could anyone tell me, or show code for deleting elements as the application is closed without internal exit button event.

flag
Please change the title to have exact question. "I need help" is not a good way to put it. Imagine everyone wrote the question that way, nobody will be able to understand unless they see the details. Also tag it appropriately. – shahkalpesh Jan 1 '09 at 5:08
So when you say "close application" you mean when a user closes their web browser or logs off your web app??? – Jason Jackson Jan 1 '09 at 5:10

3 Answers

vote up 0 vote down

You should add some Cache Item and a Cache Expiration CallBack with SlidingExpiration.

So you can handle deleting all your items when Expiration CallBack is fired whenever the users didn't click on the Exit button.

Check this out : http://geekswithblogs.net/jawad/archive/2005/05/23/CacheManager.aspx

link|flag
vote up 0 vote down

ya ur correct... will do that... thank you....

link|flag
This is not an answer. You probably want to delete this post and either leave a comment on my answer or edit your question to include this info. If you think I had the correct answer then mark my answer as correct. Glad I could help with your problem! – Jason Jackson Jan 1 '09 at 5:34
vote up 1 vote down

If you are using a web application, there is no real way to determine when a user leaves your app. There are a variety of strategies you can use, but none of them are 100% reliable. These strategies include:

  1. Session timeout of user causes log-off logic to execute (deleting rows).
  2. Using Javascript to detect when the user is navigating away from the page and firing an AJAX call to do log-off logic.
  3. Detect browser close with Javascript and call AJAX like #2.

You may wish to reverse the logic here. Why not run some logic when the user logs in to detect these orphaned rows, and delete them?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.