Click here to Skip to main content
15,890,185 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using below code direct bind all the data into the list including images
C#
void ListPostComingsoon_Completed(object sender, ListPostComingsoonCompletedEventArgs e)
        {
            ComingSoonList.ItemsSource = e.Result;
           
        }

And the List<> structure is something like below
C#
select new post
                  {

                      postid = (int)r.postid,
                      userid = (int)r.userid,
                      NofLikeString = r.NofLike.ToString() + " Likes",
                      title = r.title,
                      startdate = r.startdate.ToString(),
                      enddate = r.enddate.ToString(),
                      image =   "http://localhost:6848/photo/" + r.image

                  }).ToList();


How can i achieve image caching(the image show separately once it's downloaded)?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900