Skip to main content
Home Forums Silverlight Programming Silverlight Controls and Silverlight Toolkit Can we create silveright application with offline features?
4 replies. Latest Post by krishnanellutla on November 5, 2009.
(0)
krishnan...
Member
2 points
6 Posts
11-04-2009 2:46 PM |
HI experts,
we are plannign to create a silverlight application, which should have capabilites of saving data locally during offline, once users connected to internet application should submit data to database server?
How can i acheive these fetures? appreciate your help on this.
Thanks in advance
Krishna
Sledge70
Contributor
5992 points
1,052 Posts
11-04-2009 3:09 PM |
To allow your SL application to run offline you would need to make it an OOB (Out of browser) SL App.http://nerddawg.blogspot.com/2009/04/silverlight-out-of-browser-support-what.html
For storing infomation locally you need to look at IsolatedStorage. This is the only place you have access to for storing files on the client side.http://silverlight.net/learn/quickstarts/isolatedstorage/
11-04-2009 9:26 PM |
Hi,
Wonderfull, Thank you very much for such good idea. I will explore more on this
amyo
3660 points
495 Posts
11-04-2009 9:49 PM |
You can also detect network mode (offline/online) in OOB mode:
Check this video (OOB and network detection): http://www.silverlight.net/learn/videos/all/out-of-browser-experiences/
11-05-2009 8:59 AM |
Thanks alot, this will help me alot.