When uploading files from RTE I first have to right click REFRESH on the RTE_popup_image.asp (image upload popup). Before I see the updated files/dir overview ...
It probably has something to do with server side cache settings. But I have no control over that

So now I'm looking for a place to insert something like ...
<%
Response.Expires = 60
Response.Expiresabsolute = Now() - 2
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>
but top of RTE_popup_image.asp does not work ... any help is much appreciated !!!!