Delete/Remove Temporary Internet files

M

Manish

Hi all,

Can any one plz suggest me how i can delete my temporary internet files
within my Asp.net page. I am using C# as the code behind lang.

Indeed, i have flash inserted on my .net page, which in turn gets its
values from the xml file which gets generated at the run time according
to the selection of the user in a DropDownList. I want to delete the
flash from the "temporary internet files " folder so that on each
combobox selection, the user must get the new version of the flash.

I would be grateful if some one could suggest a workaround!!

Regards
Manish
 
M

mortb

It is not possible to delete the user's temporary internetfiles.

What you can do, however, is to disable content caching for the flash files.
One way to do this it to serve the flash files through an aspx-page and set
the
HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.None)
flag

hope this helps,
mortb
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top