Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to write an offline silverlight application?

How to write an offline silverlight application? In which I have a database running on databse server,Application running on application server ,however if user wants to run the application in offline mode then the same ui can be seen to him in offline also all the data stored locally in the files which can be synchronised later.

like image 354
kunal rai Avatar asked Oct 20 '09 10:10

kunal rai


1 Answers

Your question can be divided in two I think:

1) How to build out-of-browser Silverlight applications?

You can do that since Silverlight 3. See for example here: http://msdn.microsoft.com/en-us/magazine/dd882515.aspx

2) How to have offline access to data that is normally online?

You need to implement a cache mechanism that locally stores the data using isolated storage. See for example here: http://blogs.msdn.com/brada/archive/2008/06/26/data-focused-silverlight-demo.aspx

like image 123
Konamiman Avatar answered Oct 22 '22 11:10

Konamiman