ScG
ScG

Reputation: 1073

Reading and Editing text in Silverlight

I want to open a text file, make changes to it and then update same file via Silverlight. How can i do it?

Upvotes: 0

Views: 68

Answers (1)

Johannes
Johannes

Reputation: 1095

You can open the file through the file upload dialog. However, Silverlight does not allow writing to the disk (due to security reasons here) except through the SaveFileDialog, so you will have to ask the user to save the file.

Upvotes: 1

Related Questions