locked
Does Blend and Visual Studio has separate data storage? RRS feed

  • Question

  • It seems that the data I saved in localstorage while running our app is not available to when running Blend?

    if (typeof (Storage) !== "undefined") {
                    localStorage["test"] = "test1";

    }

    reading localStorage["test"] gives back the value.

    However, when trying to read localStorage["test]  while running in Blend, it does not seem to be able to read the data saved while running our app from Visual Studio.  Is that the correct?

    Sunday, December 23, 2012 3:00 AM

Answers

  • Hi,

    If that is the same app. Blend and VS are using the same data storage. I have test your scenario on my side. And there is no problem. Please check again.


    Roy
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

    • Marked as answer by Song Tian Friday, December 28, 2012 7:41 AM
    Monday, December 24, 2012 7:39 AM