Store user data in Windows 8 metro app

前端 未结 4 967
醉梦人生
醉梦人生 2021-02-19 18:28

I am learning how to develop Windows 8 Metro style apps but i couldn\'t found a way to store user data in SQL Server for example.

What could i use or how to store user d

4条回答
  •  野性不改
    2021-02-19 18:43

    In addition to the answers you've already gotten, don't forget standard HTML5 localStorage, which should work across platforms and therefore help code reusability. What's not a standard is how much space you're allowed, but the de facto standard amount is about 5MB in all platforms. It might be more on Windows 8 for Metro style apps, but that's just a guess.

提交回复
热议问题