Petras
Petras

Reputation: 4759

Can Silverlight store data on a user's local machine? Other options to do this?

Can Silverlight store data on a user's local machine if correct permissions are enabled?

I have an application where sales reps go to various customers and record their details. The sales rep does not have internet access. So I was thinking a Silverlight app would be a good idea as a Windows app is less flexible if we ever need this to be a server based solution in the long run.

I have never used Silverlight so don't know if it can store data locally. HTML5 client side persistence might also be an idea, not sure.

Upvotes: 0

Views: 1175

Answers (4)

indra reddy
indra reddy

Reputation: 1

yes we can store the silverlightdata into database. but we cannot store the silverlight data directly into the database,we can stored the data through webservices or wcf using proxy class.

Upvotes: 0

cristoph
cristoph

Reputation: 11

You can use Siaqodb and store data on MyDocuments or other My... folder in OOB mode or in IsolatedStorage

Upvotes: 1

Pete
Pete

Reputation: 528

A Windows app is no less flexible than a Silverlight app in yuour scenario.

But yes, you can save locally. Use isolatedstorage if you'd like, allow the user to save using the file dialog, or use elevated permissions to write to My Documents folder (out of browser only)

Pete

Upvotes: 0

Related Questions