I have an autocomplete extender on my ASP.NET page and have set the "EnableCaching" attribute to "true".
Based on some conditions I want to clear the autocomplete extender's cache (I am not referring to the data cache that I am using in my Autocomplete Web Service - I am talking about the client-side cache used by the Auto Complete Extender.)
One obvious solution would be to just set "EnableCaching" to false, but this would result in my Database suffering far too many queries.
Can this be done via javascript, or any other way for that matter?