This is a migrated thread and some comments may be shown as answers.

prevent image caching

1 Answer 43 Views
CoverFlow
This is a migrated thread and some comments may be shown as answers.
Dan
Top achievements
Rank 1
Dan asked on 02 Jun 2010, 08:34 PM
I am trying to prevent cover flow from cahcing images.
I have the following coverflow:
                <telerikNavigation:RadCoverFlow x:Name="CoverFlow"  Height="Auto" Width="980"  >
                    <telerikNavigation:RadCoverFlow.ItemTemplate>
                        <DataTemplate>
                            <Image Source="{Binding}" Stretch="None"  telerikNavigation:RadCoverFlow.EnableLoadNotification="True" />
                        </DataTemplate>
                    </telerikNavigation:RadCoverFlow.ItemTemplate>

                </telerikNavigation:RadCoverFlow>

And am binding it to a collection of string in code:
 var images = new ObservableCollection<string>();

            foreach (var imageURL in e.Result)
            {
                images.Add(imageURL);
            }
            CoverFlow.ItemsSource = images;

was thinking of just adding ?rn=randomnumber at the end of each.

Anything more standard that i can do to prevent the caching?
Thanks

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 07 Jun 2010, 03:31 PM
Hello Dan,

 This sounds like a good way for preventing caching.

Sincerely yours,
Miroslav Nedyalkov
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
CoverFlow
Asked by
Dan
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or