PDA

Click to See Complete Forum and Search --> : Data does not refresh from the database


ahmedabugh
May 8th, 2005, 02:19 PM
hi again...

I don't know why when I delete then requery my database, the old data comes, even after several time..

Can anyone help ?

FishGuy
May 11th, 2005, 04:01 AM
Have you checked the data has actually been deleted in the database its self. If it has it looks like your getting a cached version of the page
Try this in the page load event.
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.Cache.SetAllowResponseInBrowserHistory(False)