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 ?
Printable View
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 ?
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.
VB Code:
Response.Cache.SetCacheability(HttpCacheability.NoCache) Response.Cache.SetAllowResponseInBrowserHistory(False)