views:

39

answers:

1

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

+1  A: 

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.

Johannes