Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8563497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:58:24+00:00 2026-06-11T16:58:24+00:00

I have a Silverlight app published for some customers. I am having problems issuing

  • 0

I have a Silverlight app published for some customers. I am having problems issuing updates.

I would like for when a user loads the webpage initially, if their Application Storage is older than the last time the site was updated, then this happens. This will make my application work.

So, two questions:

  • How can I check if the users stored Application Storage is older than
    the last update to the Silverlight site?

  • How can I delete the Application Storage for the site ?

I have tried calling:

using( var store = IsolatedStorageFile.GetUserStoreForApplication() ) {
  store.Remove();
}
using( var store = IsolatedStorageFile.GetUserStoreForSite()) {
  store.Remove();
}

in the App.xaml.cs file, but these seem to have no effect on the displayed page – the Application Storage is not fully cleared.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T16:58:25+00:00Added an answer on June 11, 2026 at 4:58 pm

    •How can I check if the users stored Application Storage is older than the last update to the Silverlight site?

    this code go in app to check if there’s and update to your SL application I don’t know if it help but if you just want to do something with that IsolatedStorageFile when there’s update it should be what you want :

    Application.Current.CheckAndDownloadUpdateAsync();
    Application.Current.CheckAndDownloadUpdateCompleted += new CheckAndDownloadUpdateCompletedEventHandler(Current_CheckAndDownloadUpdateCompleted);
    
    private void Current_CheckAndDownloadUpdateCompleted(object sender, CheckAndDownloadUpdateCompletedEventArgs e)
    {   
       if (e.UpdateAvailable) 
       { 
    
       } 
    }
    

    •How can I delete the Application Storage for the site ?

    IsolatedStorageFile store  = IsolatedStorageFile.GetUserStoreForApplication();
    if(store.FileExists(FileName))
    {
      store.DeleteFile(FileName);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Silverlight app with a DataGrid containing some custom columns and all
I have a Silverlight web app which uses ASP.net Website administration tool for user
I have a Windows Phone 7.5/Silverlight app. I have some code that I duplicate
I have a Silverlight 4 app that is allowing the user to upload a
I have a silverlight app that allows the user to draw on it and
I have a silverlight app on an MVC page that user's can draw on,
I have created a silverlight app that consits of like buttons within specific usercontrols
I have client-server (Silverlight) app. Some server code throws exceptions that I handle on
I have a Silverlight app that utilizes the Bing Maps control. Data loads when
I have a Silverlight app where I want to do an export of some

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.