ASP Access Query - does not clear result!

I am retrieving data from an Access database using ASP.

Everything works fine until I make changes in the database and want to read the data. It seems as if the program remembers the old data string.

I can not get the updated data into my program ?

Also if I close my internet explorer and start the program again the updated data are not retrieved. Why is that and what can I do about it ?

Here is the script being used to elaborate my data:

loadVariables (“business_mng_list.asp”, this);

onClipEvent(data)
{
_root.Application.Content.biz_mng1.removeAll()

_global.biz_mng_db=results.split(";")
dd_len=_global.biz_mng_db.length
for ( i=0; i<dd_len-2; i++){
_root.Application.Content.biz_mng1.addItem({label: _global.biz_mng_db*,data: _global.biz_mng_db[i+1]});

i++
}

_root.Application.Content.biz_mng1.text=""
results.removeAll()
}